summaryrefslogtreecommitdiffstats
path: root/include/qpdf/Types.h
blob: 4041ce3a1ff5cf5e1350ce38211f11ba7047814f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __QPDFTYPES_H__
#define __QPDFTYPES_H__

/* Attempt to provide off_t and size_t on any recent platform.  To
 * make cross compilation easier and to be more portable across
 * platforms, QPDF avoids having any public header files use the
 * results of autoconf testing, so we have to handle this ourselves in
 * a static way.
 */

#define _FILE_OFFSET_BITS 64
#include <sys/types.h>
#include <stdio.h>
#include <string.h>

#endif /* __QPDFTYPES_H__ */