diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-15 02:19:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-15 02:19:43 +0000 |
commit | 6defc76a852c3d11469e49cb29d50ed7b383a6a0 (patch) | |
tree | 5ad955fa6807b4a753fb77632f4d2e6def35627e /runtime | |
parent | 9575a18c98b382038ddfe997a91389f0e73ba202 (diff) | |
download | external_llvm-6defc76a852c3d11469e49cb29d50ed7b383a6a0.zip external_llvm-6defc76a852c3d11469e49cb29d50ed7b383a6a0.tar.gz external_llvm-6defc76a852c3d11469e49cb29d50ed7b383a6a0.tar.bz2 |
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.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/libdummy/dummylib.c b/runtime/libdummy/dummylib.c index 195138a..aa104f8 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 |