aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-07-21 13:45:56 -0700
committerAlon Zakai <alonzakai@gmail.com>2014-07-21 13:45:56 -0700
commitd1e74bbabb835f0a9e988ab53f37c9f4d0a29d8c (patch)
tree93a82df6bb17b78598a13e2dc7afab7e774a0f95
parent780fac7acb774833322497d5e23a8b0afcf40d67 (diff)
move isxdigit from libcextra to libc
-rw-r--r--system/lib/libc.symbols1
-rw-r--r--system/lib/libcextra.symbols1
-rw-r--r--tools/system_libs.py2
3 files changed, 2 insertions, 2 deletions
diff --git a/system/lib/libc.symbols b/system/lib/libc.symbols
index 2fc5e5c1..56c363e1 100644
--- a/system/lib/libc.symbols
+++ b/system/lib/libc.symbols
@@ -72,3 +72,4 @@
T vsprintf
T wcrtomb
T wctomb
+ T isxdigit
diff --git a/system/lib/libcextra.symbols b/system/lib/libcextra.symbols
index 2c004699..d671482a 100644
--- a/system/lib/libcextra.symbols
+++ b/system/lib/libcextra.symbols
@@ -54,7 +54,6 @@
T isalpha_l
T isblank_l
T isdigit_l
- T isxdigit
T isxdigit_l
T isalnum
T isalnum_l
diff --git a/tools/system_libs.py b/tools/system_libs.py
index 8061a4f5..9b63af09 100644
--- a/tools/system_libs.py
+++ b/tools/system_libs.py
@@ -87,6 +87,7 @@ def calculate(temp_files, in_temp, stdout_, stderr_):
'isdigit.c',
'isspace.c',
'isupper.c',
+ 'isxdigit.c',
'tolower.c',
]],
['internal', [
@@ -168,7 +169,6 @@ def calculate(temp_files, in_temp, stdout_, stderr_):
'islower.c',
'isprint.c',
'ispunct.c',
- 'isxdigit.c',
'iswalnum.c',
'iswalpha.c',
'iswblank.c',