diff options
-rw-r--r-- | include/stdlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 4f2b1b5..af2a6f5 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -36,6 +36,8 @@ #ifndef _STDLIB_H_ #define _STDLIB_H_ +#include <sys/cdefs.h> + #include <machine/ansi.h> #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE) @@ -79,8 +81,6 @@ typedef struct { extern int __mb_cur_max; #define MB_CUR_MAX __mb_cur_max -#include <sys/cdefs.h> - __BEGIN_DECLS void abort __P((void)) __dead2; int abs __P((int)) __pure2; |