Changes in kernel/generic/include/printf/verify.h [09d13c8e:c8752175] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/printf/verify.h
r09d13c8e rc8752175 36 36 #define KERN_PRINTF_VERIFY_H_ 37 37 38 #ifndef _HELENOS_NVERIFY_PRINTF38 #ifndef NVERIFY_PRINTF 39 39 40 40 #ifdef __clang__ 41 #define _HELENOS_PRINTF_ATTRIBUTE(start, end) \41 #define PRINTF_ATTRIBUTE(start, end) \ 42 42 __attribute__((format(__printf__, start, end))) 43 43 #else 44 #define _HELENOS_PRINTF_ATTRIBUTE(start, end) \44 #define PRINTF_ATTRIBUTE(start, end) \ 45 45 __attribute__((format(gnu_printf, start, end))) 46 46 #endif 47 47 48 48 49 #else /* _HELENOS_NVERIFY_PRINTF */49 #else /* NVERIFY_PRINTF */ 50 50 51 #define _HELENOS_PRINTF_ATTRIBUTE(start, end)51 #define PRINTF_ATTRIBUTE(start, end) 52 52 53 #endif /* _HELENOS_NVERIFY_PRINTF */53 #endif /* NVERIFY_PRINTF */ 54 54 55 55 #endif
Note:
See TracChangeset
for help on using the changeset viewer.