2005-04-21 16:53:53 +02:00
|
|
|
/* Header file for the system information server.
|
|
|
|
*
|
|
|
|
* Created:
|
|
|
|
* Jul 13, 2004 by Jorrit N. Herder
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define _SYSTEM 1 /* get OK and negative error codes */
|
|
|
|
#define _MINIX 1 /* tell headers to include MINIX stuff */
|
|
|
|
|
|
|
|
#include <ansi.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <minix/callnr.h>
|
|
|
|
#include <minix/config.h>
|
|
|
|
#include <minix/type.h>
|
|
|
|
#include <minix/const.h>
|
|
|
|
#include <minix/com.h>
|
|
|
|
#include <minix/syslib.h>
|
2005-07-19 15:21:51 +02:00
|
|
|
#include <minix/sysutil.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
#include <minix/keymap.h>
|
2005-06-20 16:23:31 +02:00
|
|
|
#include <minix/bitmap.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2005-06-07 16:43:35 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <signal.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
#include "proto.h"
|
|
|
|
#include "glo.h"
|
|
|
|
|