hjl / source-git / glibc

Forked from source-git/glibc 3 years ago
Clone

Blame include/sys/cdefs.h

Packit 6c4009
#ifndef _SYS_CDEFS_H
Packit 6c4009
Packit 6c4009
#include <misc/sys/cdefs.h>
Packit 6c4009
Packit 6c4009
#ifndef _ISOMAC
Packit 6c4009
/* The compiler will optimize based on the knowledge the parameter is
Packit 6c4009
   not NULL.  This will omit tests.  A robust implementation cannot allow
Packit 6c4009
   this so when compiling glibc itself we ignore this attribute.  */
Packit 6c4009
# undef __nonnull
Packit 6c4009
# define __nonnull(params)
Packit 6c4009
Packit 6c4009
extern void __chk_fail (void) __attribute__ ((__noreturn__));
Packit 6c4009
libc_hidden_proto (__chk_fail)
Packit 6c4009
rtld_hidden_proto (__chk_fail)
Packit 6c4009
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
#endif