diff options
| author | Chris Lattner <sabre@nondot.org> | 2003-08-14 20:55:38 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2003-08-14 20:55:38 +0000 |
| commit | ecc3ec0ca95aa9a414aa9076fa4bbfa10f84de6b (patch) | |
| tree | fedca855a95d07270961a266fbc87cee00ce6021 /llvm/runtime/GCCLibraries | |
| parent | 96c81e9fff5cdaa880857d47d9fda85fb630523e (diff) | |
| download | bcm5719-llvm-ecc3ec0ca95aa9a414aa9076fa4bbfa10f84de6b.tar.gz bcm5719-llvm-ecc3ec0ca95aa9a414aa9076fa4bbfa10f84de6b.zip | |
Disable this support stuff, it doesn't work under linux anyway
llvm-svn: 7849
Diffstat (limited to 'llvm/runtime/GCCLibraries')
| -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 |

