Replace previous change by different test
[minix.git] / servers / ds / inc.h
blob7ed2d76cb66ac9258ca0e57315e987a6e530ccc0
1 #ifndef _DS_INC_H
2 #define _DS_INC_H
4 /* Header file including all needed system headers. */
6 #define _POSIX_SOURCE 1 /* tell headers to include POSIX stuff */
7 #define _MINIX 1 /* tell headers to include MINIX stuff */
8 #define _SYSTEM 1 /* get OK and negative error codes */
10 #include <sys/types.h>
11 #include <sys/param.h>
12 #include <limits.h>
13 #include <errno.h>
14 #include <regex.h>
16 #include <minix/callnr.h>
17 #include <minix/config.h>
18 #include <minix/type.h>
19 #include <minix/const.h>
20 #include <minix/com.h>
21 #include <minix/ds.h>
22 #include <minix/syslib.h>
23 #include <minix/sysinfo.h>
24 #include <minix/sysutil.h>
25 #include <minix/keymap.h>
26 #include <minix/bitmap.h>
27 #include <minix/rs.h>
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <string.h>
32 #include <signal.h>
34 #include "proto.h"
35 #endif