PKUOS - Pintos
Pintos source browser for PKU Operating System course
stdio.h
Go to the documentation of this file.
1#ifndef __LIB_USER_STDIO_H
2#define __LIB_USER_STDIO_H
3
4int hprintf (int, const char *, ...) PRINTF_FORMAT (2, 3);
5int vhprintf (int, const char *, va_list) PRINTF_FORMAT (2, 0);
6
7#endif /**< lib/user/stdio.h */
#define PRINTF_FORMAT(FMT, FIRST)
Definition: debug.h:10
__builtin_va_list va_list
GCC has <stdarg.h> functionality as built-ins, so all we need is to use it.
Definition: stdarg.h:7
int hprintf(int, const char *,...) PRINTF_FORMAT(2
int int vhprintf(int, const char *, va_list) PRINTF_FORMAT(2