cdatapack: include sys/types.h for off_t

This isn't required on all systems, but I ran into one where it
was. Sigh. I've struggled a bit to find proper documentation of this,
and this is the best I could do:
http://pubs.opengroup.org/onlinepubs/009696799/basedefs/sys/types.h.html
This commit is contained in:
Augie Fackler 2016-11-28 17:24:45 -05:00
parent 73155a224e
commit 22653c7629

View File

@ -10,6 +10,7 @@
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <sys/types.h>
#define NODE_SZ 20