summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-15 02:19:43 +0000
committerChris Lattner <sabre@nondot.org>2003-08-15 02:19:43 +0000
commit6defc76a852c3d11469e49cb29d50ed7b383a6a0 (patch)
tree5ad955fa6807b4a753fb77632f4d2e6def35627e /runtime
parent9575a18c98b382038ddfe997a91389f0e73ba202 (diff)
downloadllvm-6defc76a852c3d11469e49cb29d50ed7b383a6a0.tar.gz
llvm-6defc76a852c3d11469e49cb29d50ed7b383a6a0.tar.bz2
llvm-6defc76a852c3d11469e49cb29d50ed7b383a6a0.tar.xz
Disable this library for now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7857 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r--runtime/libdummy/dummylib.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/libdummy/dummylib.c b/runtime/libdummy/dummylib.c
index 195138aadd..aa104f8f8a 100644
--- a/runtime/libdummy/dummylib.c
+++ b/runtime/libdummy/dummylib.c
@@ -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