mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 22:27:47 -04:00
Linux (at least Debian) requires sys/types.h to get off_t.
This commit is contained in:
parent
4dc4ea2604
commit
ce7fa714ab
2 changed files with 2 additions and 0 deletions
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef ARCHIVE_H_INCLUDED
|
||||
#define ARCHIVE_H_INCLUDED
|
||||
|
||||
#include <sys/types.h> /* Linux requires this for off_t */
|
||||
#include <inttypes.h> /* For int64_t */
|
||||
#include <unistd.h> /* For ssize_t and size_t */
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef ARCHIVE_H_INCLUDED
|
||||
#define ARCHIVE_H_INCLUDED
|
||||
|
||||
#include <sys/types.h> /* Linux requires this for off_t */
|
||||
#include <inttypes.h> /* For int64_t */
|
||||
#include <unistd.h> /* For ssize_t and size_t */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue