summaryrefslogtreecommitdiff
path: root/src/nonstd/__printf.c
blob: 5868a15d2f29c3b212c3e1af66d10a80799dee9b (plain)
1
2
3
4
#include <nonstd/io.h>

#define __printf(_opts, _fmt, _ap) \
	((int (*)(struct io_options*, const char*, va_list))__libc(PRINTF))(_opts, _fmt, _ap)