. service tells you which device it couldn't stat
[minix3.git] / servers / pm / pm.h
blob0d610454ef4c6b4d6e928f3278e4df920796ae8f
1 /* This is the master header for PM. It includes some other files
2 * and defines the principal constants.
3 */
4 #define _POSIX_SOURCE 1 /* tell headers to include POSIX stuff */
5 #define _MINIX 1 /* tell headers to include MINIX stuff */
6 #define _SYSTEM 1 /* tell headers that this is the kernel */
8 /* The following are so basic, all the *.c files get them automatically. */
9 #include <minix/config.h> /* MUST be first */
10 #include <ansi.h> /* MUST be second */
11 #include <sys/types.h>
12 #include <minix/const.h>
13 #include <minix/type.h>
15 #include <fcntl.h>
16 #include <unistd.h>
17 #include <minix/syslib.h>
18 #include <minix/sysutil.h>
20 #include <limits.h>
21 #include <errno.h>
23 #include "const.h"
24 #include "type.h"
25 #include "proto.h"
26 #include "glo.h"