5381972e40e6448ac61a585394db1b93c65ef7f3
[ginge.git] / loader / llibc.h
1 void g_fprintf(int fd, const char *fmt, ...)
2         __attribute__((format(printf, 2, 3)));
3
4 #define g_printf(fmt, ...) \
5         g_fprintf(1, fmt, ##__VA_ARGS__)
6
7 void g_sleep(unsigned int seconds);