xref: /minix3/minix/servers/ds/inc.h (revision 736b88cf53fefc6d498873b8ecf2e9320ec56864)
1 #ifndef _DS_INC_H
2 #define _DS_INC_H
3 
4 /* Header file including all needed system headers. */
5 
6 #define _SYSTEM		1	/* get OK and negative error codes */
7 
8 #include <sys/types.h>
9 #include <sys/param.h>
10 #include <limits.h>
11 #include <errno.h>
12 #include <regex.h>
13 
14 #include <minix/callnr.h>
15 #include <minix/config.h>
16 #include <minix/type.h>
17 #include <minix/const.h>
18 #include <minix/com.h>
19 #include <minix/ds.h>
20 #include <minix/syslib.h>
21 #include <minix/sysinfo.h>
22 #include <minix/sysutil.h>
23 #include <minix/bitmap.h>
24 #include <minix/rs.h>
25 
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <string.h>
29 #include <signal.h>
30 #include <assert.h>
31 
32 #include "proto.h"
33 #endif
34