mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
#include libutil.h for fparseln on FreeBSD
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
5bd73b5107
commit
387dcafe06
1 changed files with 3 additions and 0 deletions
|
|
@ -36,6 +36,9 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#if defined(__FreeBSD__)
|
||||||
|
#include <libutil.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#define SKIPWS(p) while (isspace((int)(*p))) p++
|
#define SKIPWS(p) while (isspace((int)(*p))) p++
|
||||||
#define WS "\t\n "
|
#define WS "\t\n "
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue