From: Chris Lattner Date: Fri, 15 Aug 2003 02:19:43 +0000 (+0000) Subject: Disable this library for now X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6defc76a852c3d11469e49cb29d50ed7b383a6a0;p=oota-llvm.git Disable this library for now git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7857 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/runtime/libdummy/dummylib.c b/runtime/libdummy/dummylib.c index 195138aadd3..aa104f8f8aa 100644 --- a/runtime/libdummy/dummylib.c +++ b/runtime/libdummy/dummylib.c @@ -7,6 +7,7 @@ #include #include +#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