mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-01 13:26:47 +08:00
12 lines
216 B
C
12 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
|
|
|