Changeset 2b3dd78 in mainline for uspace/lib/c/include/io/verify.h
- Timestamp:
- 2018-01-31T12:02:00Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5595841
- Parents:
- a0a9cc2 (diff), 14d789c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/io/verify.h
ra0a9cc2 r2b3dd78 36 36 #define LIBC_IO_VERIFY_H_ 37 37 38 #ifndef NVERIFY_PRINTF38 #ifndef _HELENOS_NVERIFY_PRINTF 39 39 40 40 #ifdef __clang__ 41 #define PRINTF_ATTRIBUTE(start, end) \41 #define _HELENOS_PRINTF_ATTRIBUTE(start, end) \ 42 42 __attribute__((format(__printf__, start, end))) 43 43 #else 44 #define PRINTF_ATTRIBUTE(start, end) \44 #define _HELENOS_PRINTF_ATTRIBUTE(start, end) \ 45 45 __attribute__((format(gnu_printf, start, end))) 46 46 #endif 47 47 48 #else /* NVERIFY_PRINTF */48 #else /* _HELENOS_NVERIFY_PRINTF */ 49 49 50 #define PRINTF_ATTRIBUTE(start, end)50 #define _HELENOS_PRINTF_ATTRIBUTE(start, end) 51 51 52 #endif /* NVERIFY_PRINTF */52 #endif /* _HELENOS_NVERIFY_PRINTF */ 53 53 54 54 #endif
Note:
See TracChangeset
for help on using the changeset viewer.