1992-04-22 20:40:53 +00:00
|
|
|
/* This file just picks the correct udiphxxx.h depending on the host */
|
1993-05-21 17:51:50 +00:00
|
|
|
/* The two hosts that are now defined are UNIX and MSDOS */
|
1992-04-22 20:40:53 +00:00
|
|
|
|
1993-05-21 17:51:50 +00:00
|
|
|
/*
|
|
|
|
* For the moment, we will default to BSD_IPC; this might change if/when
|
|
|
|
* another type of IPC (Mach? SysV?) is implemented.
|
|
|
|
*/
|
1993-01-06 10:30:22 +00:00
|
|
|
|
1993-05-21 17:51:50 +00:00
|
|
|
#ifdef DOS_IPC
|
1992-04-22 20:40:53 +00:00
|
|
|
#include "udiphdos.h"
|
1993-05-21 17:51:50 +00:00
|
|
|
#else
|
|
|
|
/*#ifdef BSD_IPC */
|
|
|
|
#include "udiphunix.h"
|
1992-04-22 20:40:53 +00:00
|
|
|
#endif
|
|
|
|
|