/* *----------------------------------------------------------------------------- * * stdio.h -- * * Minimal implementation of a subset of ISO C's stdio.h. * *----------------------------------------------------------------------------- */ #ifndef _STDIO_H #define _STDIO_H #include extern int printf (char *fmt, ...) __attribute__ ((format (printf, 1, 2))); #endif /* !_STDIO_H */