diff options
author | Chris Lattner <sabre@nondot.org> | 2003-02-03 19:12:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-02-03 19:12:38 +0000 |
commit | 3a35254960dfe86c9900a36806de2e47c932414c (patch) | |
tree | 55b9e224ae22d1e451a4b45be0b89de546ac4807 /runtime/libdummy/dummylib.c | |
parent | 0ac7d5c534be02eee276f0e05eb312d5de096747 (diff) | |
download | external_llvm-3a35254960dfe86c9900a36806de2e47c932414c.zip external_llvm-3a35254960dfe86c9900a36806de2e47c932414c.tar.gz external_llvm-3a35254960dfe86c9900a36806de2e47c932414c.tar.bz2 |
Implement feof and xmalloc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5478 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/libdummy/dummylib.c')
-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 e5e255d..ef2d86e 100644 --- a/runtime/libdummy/dummylib.c +++ b/runtime/libdummy/dummylib.c @@ -5,6 +5,7 @@ #include <sys/time.h> int gettimeofday(struct timeval *tv, void *tz) { return 0; } +void *xmalloc(size_t X) { return malloc(X); } void srand(unsigned x) {} double exp(double x) { return 0; } @@ -35,6 +36,7 @@ long ftell(FILE *F) { return 0; } int getc(FILE *S) { return 0; } size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream) { return 0; } int fseek(FILE *stream, long offset, int whence) { return 0; } +int feof(FILE *stream) { return 0; } int fputs(const char *s, FILE *stream) { return 0; } int ferror(FILE *F) { return 0; } FILE *fdopen(int fildes, const char *mode) { return 0;} |