blob: b858a7e63d5195b5a8e80aa9533262a6bd089045 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*
* sys.h -- system include files.
*/
/*
* Universal (Standard 1989 ANSI C) includes.
*/
#include <ctype.h>
#include <errno.h>
#include <limits.h>
#include <math.h>
#include <setjmp.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
/*
* POSIX (1003.1-1996) includes.
*/
#include <dirent.h>
#include <fcntl.h>
#include <grp.h>
#include <pwd.h>
#include <termios.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/times.h>
#include <sys/types.h>
#include <sys/utsname.h>
/*
* Operating-system-dependent includes.
*/
#if MSWIN
#ifdef WinGraphics
#include <windows.h>
#include <sys/cygwin.h>
#include <sys/select.h>
#define int_PASCAL int PASCAL
#define LRESULT_CALLBACK LRESULT CALLBACK
#define BOOL_CALLBACK BOOL CALLBACK
#include <mmsystem.h>
#include <process.h>
#include "../wincap/dibutil.h"
#undef Type
#undef lst1
#undef lst2
#endif /* WinGraphics */
#endif /* MSWIN */
/*
* Window-system-dependent includes.
*/
#ifdef XWindows
#ifdef HaveXpmFormat
#include "../xpm/xpm.h"
#else /* HaveXpmFormat */
#include <X11/Xlib.h>
#endif /* HaveXpmFormat */
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>
#endif /* XWindows */
/*
* Feature-dependent includes.
*/
#ifdef LoadFunc
#include <dlfcn.h>
#endif /* LoadFunc */
|