get rid of pthreads
[ginge.git] / loader / llibc.h
... / ...
CommitLineData
1void 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
7void g_sleep(unsigned int seconds);