Changes in uspace/lib/c/include/io/verify.h [09d13c8e:c8752175] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/io/verify.h
r09d13c8e rc8752175 36 36 #define LIBC_IO_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 #else /* _HELENOS_NVERIFY_PRINTF */48 #else /* NVERIFY_PRINTF */ 49 49 50 #define _HELENOS_PRINTF_ATTRIBUTE(start, end)50 #define PRINTF_ATTRIBUTE(start, end) 51 51 52 #endif /* _HELENOS_NVERIFY_PRINTF */52 #endif /* NVERIFY_PRINTF */ 53 53 54 54 #endif
Note:
See TracChangeset
for help on using the changeset viewer.