mirror of
https://github.com/opnsense/src.git
synced 2026-03-29 14:13:11 -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 <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#if defined(__FreeBSD__)
|
||||
#include <libutil.h>
|
||||
#endif
|
||||
|
||||
#define SKIPWS(p) while (isspace((int)(*p))) p++
|
||||
#define WS "\t\n "
|
||||
|
|
|
|||
Loading…
Reference in a new issue