mirror of
https://github.com/ZeroOSProject/ZeroOS.git
synced 2026-09-13 00:24:41 +08:00
9 lines
144 B
C
9 lines
144 B
C
#ifndef ZEROOS_STDIO_H_
|
|
#define ZEROOS_STDIO_H_
|
|
|
|
#define stdout ((void *)0)
|
|
int printf(const char *fmt, ...);
|
|
int fflush(void *stream);
|
|
|
|
#endif
|