Fix typos in documentation of fopen ",ccs=STRING".
[glibc.git] / include / sys / cdefs.h
bloba2bdf20d9390ff1629bbffad56ca64d591cadb80
1 #ifndef _SYS_CDEFS_H
3 #include <misc/sys/cdefs.h>
5 /* The compiler will optimize based on the knowledge the parameter is
6 not NULL. This will omit tests. A robust implementation cannot allow
7 this so when compiling glibc itself we ignore this attribute. */
8 #undef __nonnull
9 #define __nonnull(params)
11 extern void __chk_fail (void) __attribute__ ((__noreturn__));
12 libc_hidden_proto (__chk_fail)
13 rtld_hidden_proto (__chk_fail)
16 #if __GNUC_PREREQ (4,3)
17 # define __attribute_alloc_size(...) __attribute__ ((alloc_size (__VA_ARGS__)))
18 #else
19 # define __attribute_alloc_size(...)
20 #endif
22 #endif