do as the comment says and #if defined(every_other) || defined(platform) || ...

===> #if !defined(__NetBSD__)
This commit is contained in:
pooka 2014-01-08 01:47:31 +00:00
parent f67143f64b
commit 6459f6aa95
1 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rumpuser_port.h,v 1.24 2014/01/08 01:45:29 pooka Exp $ */ /* $NetBSD: rumpuser_port.h,v 1.25 2014/01/08 01:47:31 pooka Exp $ */
/* /*
* Portability header for non-NetBSD platforms. * Portability header for non-NetBSD platforms.
@ -92,9 +92,8 @@ clock_gettime(clockid_t clk, struct timespec *ts)
#include <sys/types.h> #include <sys/types.h>
#include <sys/param.h> #include <sys/param.h>
/* maybe this should be !__NetBSD__ ? */ /* NetBSD is the only(?) platform with getenv_r() */
#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \ #if !defined(__NetBSD__)
|| defined(__DragonFly__) || defined(__APPLE__) || defined(__OpenBSD__) || defined(__CYGWIN__)
#include <errno.h> #include <errno.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>