Add lots of functions
authorChris Lattner <sabre@nondot.org>
Tue, 18 Feb 2003 20:42:07 +0000 (20:42 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 18 Feb 2003 20:42:07 +0000 (20:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5598 91177308-0d34-0410-b5e6-96231b3b80d8

runtime/libdummy/dummylib.c

index 75c1805a14cb9a7ec94b7bfbc339f5057c00a3b1..195138aadd3224d63132f65b3dd2e4eb03f45d9e 100644 (file)
@@ -3,10 +3,19 @@
 #include <time.h>
 #include <stdarg.h>
 #include <sys/time.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+
+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; }
 
 // Varargs function definitions
-int ioctl(int d, int request) {return 0; }
+int ioctl(int d, int request, ...) {return 0; }
 int printf(const char *X) {return 0; }
+int sscanf(const char *X, const char *Y, ...) { return 0; }
+int fprintf(FILE *stream, const char *format, ...) { return 0; }
 
 
 int gettimeofday(struct timeval *tv, void *tz) { return 0; }
@@ -21,6 +30,7 @@ int puts(const char *x) { return 0; }
 void __main() {}
 int atoi(const char*x) { return 1; }
 char *fgets(char*Ptr, int x, FILE*F) { return Ptr; }
+char *gets(char *C) { return C; }
 int fclose(FILE*F) { return 0; }
 FILE *fopen(const char *n, const char*x) { return malloc(sizeof(FILE)); }
 FILE *freopen(const char *path, const char *mode, FILE *stream) { return 0; }
@@ -45,6 +55,9 @@ int feof(FILE *stream) { return 0; }
 int fputs(const char *s, char *stream) { return 0; }
 int ferror(FILE *F) { return 0; }
 FILE *fdopen(int fildes, const char *mode) { return 0;}
+FILE *popen(const char *command, const char *type) { return 0; }
+int pclose(FILE *stream) { return 0; }
 int ungetc(int c, FILE *stream) { return 0; }
 int setvbuf(FILE *stream, char *buf, int mode , size_t size) { return 0; }
 void rewind(FILE*F) { }