]> www.fi.muni.cz Git - evince.git/blob - backend/impress/common.h
Bump api and libtool versions and rename libview and libdocument libraries
[evince.git] / backend / impress / common.h
1 /* imposter (OO.org Impress viewer)
2 ** Copyright (C) 2003-2005 Gurer Ozen
3 ** This code is free software; you can redistribute it and/or
4 ** modify it under the terms of GNU General Public License.
5 */
6
7 #ifndef COMMON_H
8 #define COMMON_H 1
9
10 #ifdef HAVE_CONFIG_H
11 #include "config.h"
12 #endif
13
14 #include <sys/types.h>
15 #include <stdio.h>
16
17 #ifdef STDC_HEADERS
18 #include <stdlib.h>
19 #include <string.h>
20 #include <stdarg.h>
21 #elif HAVE_STRINGS_H
22 #include <strings.h>
23 #endif
24
25 #ifdef HAVE_UNISTD_H
26 #include <unistd.h>
27 #endif
28
29 #ifdef HAVE_ERRNO_H
30 #include <errno.h>
31 #endif
32 #ifndef errno
33 extern int errno;
34 #endif
35
36 #include <iksemel.h>
37 #include "imposter.h"
38
39
40 #endif  /* COMMON_H */