diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-04-28 12:10:06 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-04-29 12:10:55 +0700 |
commit | 30c055fb82c8e2d016d24577895e7f7fe11a8284 (patch) | |
tree | d88b89457c7b0ff672af117968d96aa5d60e2784 /emcc | |
parent | 5ba1a0e94fdb1f230efa34bfe5e2725ff7abef39 (diff) |
[libcextra] add isw* classification functions.
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -1182,6 +1182,21 @@ try: def create_libcextra(): if DEBUG: print >> sys.stderr, 'emcc: building libcextra for cache' musl_files = [ + ['ctype', [ + 'iswalnum.c', + 'iswalpha.c', + 'iswblank.c', + 'iswcntrl.c', + 'iswctype.c', + 'iswdigit.c', + 'iswgraph.c', + 'iswlower.c', + 'iswprint.c', + 'iswpunct.c', + 'iswspace.c', + 'iswupper.c', + 'iswxdigit.c', + ]], ['multibyte', [ 'btowc.c', 'mblen.c', |