Skip to content

Commit

Permalink
tools: Add missing unistd.h header
Browse files Browse the repository at this point in the history
`close` was implicitly defined, include `unistd.h` to define it
explicitly so that the FreeBSD compile succeeds.
  • Loading branch information
laanwj authored and cdecker committed Dec 29, 2018
1 parent f9f4ed8 commit c57e63b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tools/headerversions.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <sqlite3.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <zlib.h>

static const char template[] =
Expand Down

0 comments on commit c57e63b

Please sign in to comment.