11 lines
216 B
C
11 lines
216 B
C
/* This file just picks the correct udiphxxx.h depending on the host */
|
|
/* The two hosts that are now defined are SUN and MSDOS */
|
|
|
|
#ifdef sun
|
|
#include "udiphsun.h"
|
|
#endif
|
|
|
|
#ifdef MSDOS
|
|
#include "udiphdos.h"
|
|
#endif
|
|
|