From 2a0388e1633f13fe07c169190cdeecbe4e7a578a Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Tue, 21 Oct 2014 17:57:12 +0000 Subject: [PATCH] libutil.h is required for fparseln on FreeBSD Sponsored by: EMC / Isilon Storage Division --- contrib/netbsd-tests/lib/libc/stdlib/h_getopt.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/netbsd-tests/lib/libc/stdlib/h_getopt.c b/contrib/netbsd-tests/lib/libc/stdlib/h_getopt.c index 074e4ddf3b2..58ecd9639cd 100644 --- a/contrib/netbsd-tests/lib/libc/stdlib/h_getopt.c +++ b/contrib/netbsd-tests/lib/libc/stdlib/h_getopt.c @@ -34,6 +34,9 @@ #include #include #include +#if defined(__FreeBSD__) +#include +#endif #define WS "\t\n " #define debug 0