You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
216 B

/* 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