1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-08 13:28:05 +00:00

Fix the __FreeBSD_version check.

This commit is contained in:
Doug Rabson 2008-03-26 15:42:22 +00:00
parent 159f35a54a
commit f794f567e9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=177638

View File

@ -43,7 +43,7 @@
#include <unistd.h>
#ifdef __FreeBSD__
#if __FreeBSD_version > 800010 /* XXX change before committing to cvs */
#if __FreeBSD_version >= 800028
#define HAVE_SYSID
#endif
#include <sys/cdefs.h>