* lib-mem.c: fix FreeBSD 7.0 build by including <sys/cdefs.h> earlier on.

This commit is contained in:
Sam Hocevar 2008-07-18 09:28:14 +00:00 committed by sam
parent 8bbe4b289d
commit 5feec8da6a

View File

@ -22,6 +22,9 @@
#define _GNU_SOURCE
/* Need this for MAP_ANON and valloc() on FreeBSD (together with cdefs.h) */
#define _BSD_SOURCE
#if defined HAVE_SYS_CDEFS_H
# include <sys/cdefs.h>
#endif
/* Use this to get mmap64() on glibc systems */
#define _LARGEFILE64_SOURCE
/* Use this to get ENOMEM on HP-UX */
@ -45,9 +48,6 @@
#include <errno.h>
#include <signal.h>
#if defined HAVE_SYS_CDEFS_H
# include <sys/cdefs.h>
#endif
#if defined HAVE_MALLOC_H
# include <malloc.h>
#endif