Nick Lewycky | 8013afe | 2012-01-18 04:28:31 +0000 | [diff] [blame] | 1 | struct FILE; |
2 | extern int vfprintf(struct FILE *s, const char *format, __builtin_va_list arg); | ||||
3 | extern int vprintf(const char *format, __builtin_va_list arg); | ||||
4 | |||||
5 | extern __inline __attribute__((gnu_inline,always_inline)) int | ||||
6 | vprintf(const char *x, __builtin_va_list y) | ||||
7 | { | ||||
Pirama Arumuga Nainar | 87d948e | 2016-03-03 15:49:35 -0800 | [diff] [blame] | 8 | return vfprintf (0, 0, y); |
Nick Lewycky | 8013afe | 2012-01-18 04:28:31 +0000 | [diff] [blame] | 9 | } |