Disable this library for now
authorChris Lattner <sabre@nondot.org>
Fri, 15 Aug 2003 02:19:43 +0000 (02:19 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 15 Aug 2003 02:19:43 +0000 (02:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7857 91177308-0d34-0410-b5e6-96231b3b80d8

runtime/libdummy/dummylib.c

index 195138aadd3224d63132f65b3dd2e4eb03f45d9e..aa104f8f8aa930c32ce89e45b5dfb23ad0f3e53f 100644 (file)
@@ -7,6 +7,7 @@
 #include <sys/stat.h>
 #include <unistd.h>
 
+#if 0
 int stat(const char *file_name, struct stat *buf) { return 0; }
 int fstat(int filedes, struct stat *buf) { return 0; }
 int lstat(const char *file_name, struct stat *buf) { return 0; }
@@ -140,3 +141,4 @@ double pow(double x, double y) { return x; }
 int tolower(int x) { return x; }
 int toupper(int x) { return x; }
 
+#endif