source: trunk/minix/servers/rs/inc.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 798 bytes
Line 
1/* Header file for the system service manager server.
2 *
3 * Created:
4 * Jul 22, 2005 by Jorrit N. Herder
5 */
6
7#define _SYSTEM 1 /* get OK and negative error codes */
8#define _MINIX 1 /* tell headers to include MINIX stuff */
9
10#define VERBOSE 0 /* display diagnostics */
11
12#include <ansi.h>
13#include <sys/types.h>
14#include <limits.h>
15#include <errno.h>
16#include <signal.h>
17#include <unistd.h>
18
19#include <minix/callnr.h>
20#include <minix/config.h>
21#include <minix/type.h>
22#include <minix/const.h>
23#include <minix/com.h>
24#include <minix/syslib.h>
25#include <minix/sysutil.h>
26#include <minix/keymap.h>
27#include <minix/bitmap.h>
28
29#include <stdlib.h>
30#include <stdio.h>
31#include <string.h>
32#include <unistd.h>
33#include <signal.h>
34
35#include "proto.h"
36#include "manager.h"
37
Note: See TracBrowser for help on using the repository browser.