976a7ee0b7
Also, the so-called sun-dependent files were not very sun-dependent, so renamed it to "unix."
15 lines
361 B
C
15 lines
361 B
C
/* This file just picks the correct udiphxxx.h depending on the host */
|
|
/* The two hosts that are now defined are UNIX and MSDOS */
|
|
|
|
/*
|
|
* For the moment, we will default to BSD_IPC; this might change if/when
|
|
* another type of IPC (Mach? SysV?) is implemented.
|
|
*/
|
|
|
|
#ifdef DOS_IPC
|
|
#include "udiphdos.h"
|
|
#else
|
|
/*#ifdef BSD_IPC */
|
|
#include "udiphunix.h"
|
|
#endif
|
|
|