1992-04-22 20:40:53 +00:00
|
|
|
/* This file just picks the correct udiphxxx.h depending on the host */
|
|
|
|
/* The two hosts that are now defined are SUN and MSDOS */
|
|
|
|
|
1993-01-06 10:30:22 +00:00
|
|
|
/* The way this now works, all machines other than DOS are considered to
|
|
|
|
be Sun-like. This is known to work for HP700's. If this doesn't work
|
|
|
|
for some host, create an alternative udiphXXX.h file.
|
|
|
|
|
|
|
|
This scheme for determining which file to include is *ugly* and should be
|
|
|
|
fixed at some later date. -- zoo - 930106
|
|
|
|
*/
|
1992-04-22 20:40:53 +00:00
|
|
|
|
|
|
|
#ifdef MSDOS
|
1993-01-06 10:30:22 +00:00
|
|
|
#define CONFIG_INCLUDED
|
1992-04-22 20:40:53 +00:00
|
|
|
#include "udiphdos.h"
|
|
|
|
#endif
|
|
|
|
|
1993-01-06 10:30:22 +00:00
|
|
|
#ifndef CONFIG_INCLUDED
|
|
|
|
#include "udiphsun.h"
|
|
|
|
#endif
|