home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / gdb-4.9 / gdb / 29k-share / udi / udiphcfg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-12  |  586 b   |  20 lines

  1. /* This file just picks the correct udiphxxx.h depending on the host */
  2. /* The two hosts that are now defined are SUN and MSDOS */
  3.  
  4. /* The way this now works, all machines other than DOS are considered to
  5.    be Sun-like.  This is known to work for HP700's.  If this doesn't work
  6.    for some host, create an alternative udiphXXX.h file.  
  7.  
  8.    This scheme for determining which file to include is *ugly* and should be
  9.    fixed at some later date.  -- zoo - 930106
  10. */
  11.  
  12. #ifdef MSDOS
  13. #define CONFIG_INCLUDED
  14. #include "udiphdos.h"
  15. #endif
  16.  
  17. #ifndef CONFIG_INCLUDED
  18. #include "udiphsun.h"
  19. #endif
  20.