2005-04-21 16:53:53 +02:00
|
|
|
/* This is the master header for all device drivers. It includes some other
|
|
|
|
* files and defines the principal constants.
|
|
|
|
*/
|
|
|
|
#define _POSIX_SOURCE 1 /* tell headers to include POSIX stuff */
|
|
|
|
#define _MINIX 1 /* tell headers to include MINIX stuff */
|
|
|
|
#define _SYSTEM 1 /* get negative error number in <errno.h> */
|
|
|
|
|
|
|
|
/* The following are so basic, all the *.c files get them automatically. */
|
|
|
|
#include <minix/config.h> /* MUST be first */
|
|
|
|
#include <ansi.h> /* MUST be second */
|
|
|
|
#include <minix/type.h>
|
|
|
|
#include <minix/com.h>
|
2005-08-04 11:26:36 +02:00
|
|
|
#include <minix/dmap.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
#include <minix/callnr.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <minix/const.h>
|
|
|
|
#include <minix/devio.h>
|
|
|
|
#include <minix/syslib.h>
|
2005-07-19 15:21:51 +02:00
|
|
|
#include <minix/sysutil.h>
|
2005-06-20 16:23:31 +02:00
|
|
|
#include <minix/bitmap.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
#include <ibm/interrupt.h> /* IRQ vectors and miscellaneous ports */
|
|
|
|
#include <ibm/bios.h> /* BIOS index numbers */
|
|
|
|
#include <ibm/ports.h> /* Well-known ports */
|
|
|
|
|
|
|
|
#include <string.h>
|
2005-06-24 18:21:54 +02:00
|
|
|
#include <signal.h>
|
|
|
|
#include <stdlib.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
#include <limits.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <errno.h>
|
2005-06-03 15:55:06 +02:00
|
|
|
#include <unistd.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
|