Changes in boot/generic/include/printf.h [d16fc78:4872160] in mainline
- File:
-
- 1 edited
-
boot/generic/include/printf.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
boot/generic/include/printf.h
rd16fc78 r4872160 36 36 #include <stdarg.h> 37 37 38 #ifndef NVERIFY_PRINTF39 40 #define PRINTF_ATTRIBUTE(start, end) \41 __attribute__((format(gnu_printf, start, end)))42 43 #else /* NVERIFY_PRINTF */44 45 #define PRINTF_ATTRIBUTE(start, end)46 47 #endif /* NVERIFY_PRINTF */48 49 38 #define EOF (-1) 50 39 51 40 extern int puts(const char *); 52 extern int printf(const char *, ...) 53 PRINTF_ATTRIBUTE(1, 2); 41 extern int printf(const char *, ...); 54 42 extern int vprintf(const char *, va_list); 55 43
Note:
See TracChangeset
for help on using the changeset viewer.
