diff options
Diffstat (limited to 'llvm/runtime/GCCLibraries/libc/atox.c')
| -rw-r--r-- | llvm/runtime/GCCLibraries/libc/atox.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/runtime/GCCLibraries/libc/atox.c b/llvm/runtime/GCCLibraries/libc/atox.c index 202f5ad1a1f..726f432626d 100644 --- a/llvm/runtime/GCCLibraries/libc/atox.c +++ b/llvm/runtime/GCCLibraries/libc/atox.c @@ -23,6 +23,7 @@ #define LONG_MIN ((long)(~LONG_MAX)) /* 0x80000000 */ #endif +#if 0 /* * Convert a string to a long integer. * @@ -114,3 +115,4 @@ int atoi(const char *nptr) { long int atol(const char *nptr) { return strtol(nptr, 0, 10); } +#endif |

