Linux (at least Debian) requires sys/types.h to get off_t.

This commit is contained in:
Tim Kientzle 2004-06-07 18:42:50 +00:00
parent 4dc4ea2604
commit ce7fa714ab
2 changed files with 2 additions and 0 deletions

View file

@ -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 */

View file

@ -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 */