Include "util.h", not <util.h>. The header is in the same directory

as the C file. There may be a <util.h> on the host when compiling
on macOS or Linux, causing conflicts.
This commit is contained in:
Marcel Moolenaar 2016-10-24 17:57:46 +00:00
parent b0928c0dbb
commit 871afaefab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=307871

View file

@ -36,7 +36,8 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <util.h>
#include "util.h"
char *
flags_to_string(u_long flags, const char *def)