summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-14 20:55:38 +0000
committerChris Lattner <sabre@nondot.org>2003-08-14 20:55:38 +0000
commit1679e8205ed1f4521d7f261c45852b34375471b8 (patch)
tree49351b8c351430ec2bd9015adf496ad5d45b7e64 /runtime
parent891bd82e7987ae2de55efa9f3a6089bc478d9686 (diff)
downloadllvm-1679e8205ed1f4521d7f261c45852b34375471b8.tar.gz
llvm-1679e8205ed1f4521d7f261c45852b34375471b8.tar.bz2
llvm-1679e8205ed1f4521d7f261c45852b34375471b8.tar.xz
Disable this support stuff, it doesn't work under linux anyway
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7849 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r--runtime/GCCLibraries/libc/atox.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/GCCLibraries/libc/atox.c b/runtime/GCCLibraries/libc/atox.c
index 202f5ad1a1..726f432626 100644
--- a/runtime/GCCLibraries/libc/atox.c
+++ b/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