Changes in uspace/lib/c/include/assert.h [bc56f30:0a520db] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/assert.h
rbc56f30 r0a520db 38 38 // This is in accordance with the C standard. 39 39 40 #ifndef _LIBC_ASSERT_H_ 41 #define _LIBC_ASSERT_H_ 42 43 #include <_bits/decls.h> 40 #ifndef LIBC_ASSERT_H_ 41 #define LIBC_ASSERT_H_ 44 42 45 43 #ifndef __cplusplus 46 44 #define static_assert _Static_assert 47 45 #endif 48 49 __C_DECLS_BEGIN;50 46 51 47 extern void __helenos_assert_abort(const char *, const char *, unsigned int) … … 54 50 extern void __helenos_assert_quick_abort(const char *, const char *, unsigned int) 55 51 __attribute__((noreturn)); 56 57 __C_DECLS_END;58 52 59 53 #endif
Note:
See TracChangeset
for help on using the changeset viewer.