summaryrefslogtreecommitdiff
path: root/memdump/stdio.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-09-25 16:38:31 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-09-25 16:38:31 -0700
commit223f5298620a3b3be9fbd206e2a3fbb388487da0 (patch)
tree286635488927e801c646d80e21d6a194261ed75b /memdump/stdio.h
parent57556d8f612128679464667ce124ddc611795db2 (diff)
parenta81fb89a445ae0dca286c861d8d51f705533df0d (diff)
downloadsyslinux-3.60-pre2.tar.gz
Merge commit 'syslinux-3.52' into gpxe-supportsyslinux-3.60-pre2
Diffstat (limited to 'memdump/stdio.h')
-rw-r--r--memdump/stdio.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/memdump/stdio.h b/memdump/stdio.h
new file mode 100644
index 00000000..97988c24
--- /dev/null
+++ b/memdump/stdio.h
@@ -0,0 +1,21 @@
+#ifndef STDIO_H
+#define STDIO_H
+
+#include <stdarg.h>
+#include <stdlib.h>
+
+typedef unsigned int off_t;
+
+int putchar(int);
+int puts(const char *);
+int sprintf(char * buf, const char *fmt, ...);
+int vsprintf(char *buf, const char *fmt, va_list args);
+int printf(const char *fmt, ...);
+
+#define stdin 0
+#define stdout 1
+#define stderr 2
+
+#define fprintf(x, y, ...) printf(y, ## __VA_ARGS__)
+
+#endif /* STDIO_H */