b9f3cc6c96e2246d04703796ec05417d5e26b1a8
[pintos-anon] / stdio.h
1 #ifndef __LIB_USER_STDIO_H
2 #define __LIB_USER_STDIO_H
3
4 int hprintf (int, const char *, ...) PRINTF_FORMAT (2, 3);
5 int vhprintf (int, const char *, va_list) PRINTF_FORMAT (2, 0);
6
7 #endif /* lib/user/stdio.h */