Remove libutil.h #include on FreeBSD and instead favor stdio.h from libnetbsd

This commit is contained in:
ngie 2017-01-15 21:38:19 +00:00
parent 6313661124
commit c835c991a4
2 changed files with 0 additions and 6 deletions

View File

@ -34,9 +34,6 @@
#include <stdlib.h>
#include <unistd.h>
#include <err.h>
#ifdef __FreeBSD__
#include <libutil.h>
#endif
#define WS "\t\n "
#define debug 0

View File

@ -36,9 +36,6 @@
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#ifdef __FreeBSD__
#include <libutil.h>
#endif
#define SKIPWS(p) while (isspace((int)(*p))) p++
#define WS "\t\n "