Disable this library for now

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7857 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-08-15 02:19:43 +00:00
parent 9575a18c98
commit 6defc76a85

View 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