[project @ 1996-01-08 20:28:12 by partain]
[ghc-hetmet.git] / ghc / includes / libposix.h
1 #ifndef LIBPOSIX_H
2 #ifdef HAVE_SYS_TYPES_H
3 #include <sys/types.h>
4 #endif /* HAVE_SYS_TYPES_H */
5
6 #ifdef HAVE_SYS_WAIT_H
7 #include <sys/wait.h>
8 #endif /* HAVE_SYS_WAIT_H */
9
10 #ifdef HAVE_SIGNAL_H
11 #include <signal.h>
12 #endif /* HAVE_SIGNAL_H */
13
14 #ifdef HAVE_SYS_UTSNAME_H
15 #include <sys/utsname.h>
16 #endif /* HAVE_SYS_UTSNAME_H */
17
18 #ifdef HAVE_SYS_TIMES_H
19 #include <sys/times.h>
20 #endif /* HAVE_SYS_TIMES_H */
21
22 #ifdef HAVE_DIRENT_H
23 #include <dirent.h>
24 #endif /* HAVE_DIRENT_H */
25
26 #ifdef HAVE_SYS_STAT_H
27 #include <sys/stat.h>
28 #endif /* HAVE_SYS_STAT_H */
29
30 #ifdef HAVE_FCNTL_H
31 #include <fcntl.h>
32 #endif /* HAVE_FCNTL_H */
33
34 #ifdef HAVE_UNISTD_H
35 #include <unistd.h>
36 #endif /* HAVE_UNISTD_H */
37
38 #ifdef HAVE_UTIME_H
39 #include <utime.h>
40 #endif /* HAVE_UTIME_H */
41
42 #ifdef HAVE_TERMIOS_H
43 #include <termios.h>
44 #endif /* HAVE_TERMIOS_H */
45
46 #ifdef HAVE_GRP_H
47 #include <grp.h>
48 #endif /* HAVE_GRP_H */
49
50 #ifdef HAVE_PWD_H
51 #include <pwd.h>
52 #endif /* HAVE_PWD_H */
53
54 #ifndef _POSIX_VDISABLE
55 #define _POSIX_VDISABLE '\0'    /* Just a guess...but it works for Suns */
56 #endif
57
58 extern I_ nocldstop;
59
60 #define LIBPOSIX_H
61 #endif