loader: remove shouting from ORB's variable name
[hvf.git] / include / vsprintf.h
blob909e0b5fe13b0fb8cd98a7658d89171a11034319
1 #ifndef __VSPRINTF_H
2 #define __VSPRINTF_H
4 /*
5 * Pointers less than VSPRINTF_PAGE_SIZE will display as "<NULL>" if
6 * displayed as %s
7 */
8 #define VSPRINTF_PAGE_SIZE 4096
10 extern int snprintf(char *buf, int len, const char *fmt, ...)
11 __attribute__ ((format (printf, 3, 4)));
12 extern int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
13 __attribute__ ((format (printf, 3, 0)));
15 #endif