Add stdio.h #include for fparseln

fparseln on FreeBSD requires stdio.h, then libutil.h, whereas NetBSD only
requires util.h
This commit is contained in:
Enji Cooper 2017-01-14 07:46:03 +00:00
parent 3b85282333
commit acf26de3fa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/netbsd-tests-upstream-01-2017/; revision=312132

View File

@ -30,9 +30,10 @@
* SUCH DAMAGE.
*/
#ifndef _UTIL_H_
#define _UTIL_H_
#ifndef _LIBNETBSD_UTIL_H_
#define _LIBNETBSD_UTIL_H_
#include <stdio.h> /* for fparseln(3) */
#include <libutil.h>
char *flags_to_string(u_long flags, const char *def);