svn commit: r273390 - head/contrib/netbsd-tests/lib/libc/stdlib

Garrett Cooper ngie at FreeBSD.org
Tue Oct 21 17:57:13 UTC 2014


Author: ngie
Date: Tue Oct 21 17:57:12 2014
New Revision: 273390
URL: https://svnweb.freebsd.org/changeset/base/273390

Log:
  libutil.h is required for fparseln on FreeBSD
  
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/contrib/netbsd-tests/lib/libc/stdlib/h_getopt.c

Modified: head/contrib/netbsd-tests/lib/libc/stdlib/h_getopt.c
==============================================================================
--- head/contrib/netbsd-tests/lib/libc/stdlib/h_getopt.c	Tue Oct 21 17:56:06 2014	(r273389)
+++ head/contrib/netbsd-tests/lib/libc/stdlib/h_getopt.c	Tue Oct 21 17:57:12 2014	(r273390)
@@ -34,6 +34,9 @@
 #include <stdlib.h>
 #include <unistd.h>
 #include <err.h>
+#if defined(__FreeBSD__)
+#include <libutil.h>
+#endif
 
 #define	WS	"\t\n "
 #define	debug	0


More information about the svn-src-all mailing list