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

/* This file must be included before any system files.  It should be
 * included right after <qpdf/DLL.h> within the library.
 */

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