diff options
| author | inmarket <andrewh@inmarket.com.au> | 2014-05-22 17:34:09 +1000 |
|---|---|---|
| committer | inmarket <andrewh@inmarket.com.au> | 2014-05-22 17:34:09 +1000 |
| commit | 451f6a2ae09c621c43bc2209b2f75213c641fdd6 (patch) | |
| tree | 86812d5c81c105181b8ded3abf82946231a53e18 | |
| parent | 285bd0f4d66fa3161a80bf6711d1bef226b17fe3 (diff) | |
| download | uGFX-451f6a2ae09c621c43bc2209b2f75213c641fdd6.tar.gz uGFX-451f6a2ae09c621c43bc2209b2f75213c641fdd6.tar.bz2 uGFX-451f6a2ae09c621c43bc2209b2f75213c641fdd6.zip | |
Missing header file required for some OS's
| -rw-r--r-- | src/gfile/sys_defs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gfile/sys_defs.h b/src/gfile/sys_defs.h index 1e53b439..e4bced67 100644 --- a/src/gfile/sys_defs.h +++ b/src/gfile/sys_defs.h @@ -205,6 +205,8 @@ extern "C" { #endif #if GFILE_NEED_PRINTG + #include <stdarg.h> + int vfnprintg(GFILE *f, int maxlen, const char *fmt, va_list arg); int fnprintg(GFILE *f, int maxlen, const char *fmt, ...); #define vfprintg(f,m,a) vfnprintg(f,0,m,a) @@ -221,6 +223,8 @@ extern "C" { #endif #if GFILE_NEED_SCANG + #include <stdarg.h> + int vfscang(GFILE *f, const char *fmt, va_list arg); int fscang(GFILE *f, const char *fmt, ...); #define vscang(f,a) vfscang(gfileStdIn,f,a) |
