hppa: Implement fpu_control.h.
[glibc.git] / include / sys / cdefs.h
blob71baa1a2d209a351f318bd4ec04fe5556cfc9fd8
1 #ifndef _SYS_CDEFS_H
3 #include <misc/sys/cdefs.h>
5 #ifndef _ISOMAC
6 /* The compiler will optimize based on the knowledge the parameter is
7 not NULL. This will omit tests. A robust implementation cannot allow
8 this so when compiling glibc itself we ignore this attribute. */
9 # undef __nonnull
10 # define __nonnull(params)
12 extern void __chk_fail (void) __attribute__ ((__noreturn__));
13 libc_hidden_proto (__chk_fail)
14 rtld_hidden_proto (__chk_fail)
17 # define __attribute_alloc_size(...) __attribute__ ((alloc_size (__VA_ARGS__)))
18 #endif
20 #endif