Remove building with NOCRYPTO option
[minix.git] / minix / servers / ds / inc.h
blob92860304c115e181135cf8e8c52e5fab5992fd3b
1 #ifndef _DS_INC_H
2 #define _DS_INC_H
4 /* Header file including all needed system headers. */
6 #define _SYSTEM 1 /* get OK and negative error codes */
8 #include <sys/types.h>
9 #include <sys/param.h>
10 #include <limits.h>
11 #include <errno.h>
12 #include <regex.h>
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>
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <string.h>
29 #include <signal.h>
30 #include <assert.h>
32 #include "proto.h"
33 #endif