home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / gcc / config / m68k / xm-atari.h < prev    next >
C/C++ Source or Header  |  1995-12-11  |  2KB  |  47 lines

  1. /* Definitions of host machine for GNU compiler.
  2.    Atari TT ASV version.
  3.    Copyright (C) 1994, 1995 Free Software Foundation, Inc.
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 1, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 59 Temple Place - Suite 330,
  20. Boston, MA 02111-1307, USA.  */
  21.  
  22. #include "m68k/xm-m68kv.h"    /* Use the System V flavor of m68k host */
  23.  
  24. #define HAVE_VPRINTF            /* Host has vprintf() in library */
  25.  
  26. /* Add HZ define if missing */
  27.  
  28. #ifndef HZ
  29. #define HZ 100            /* System clock */
  30. #endif
  31.  
  32. /* Define FULL_PROTOTYPES for protoize.c, to get <unistd.h> included.
  33.    We need this file for things like R_OK, not necessarily prototypes. */
  34.  
  35. #define FULL_PROTOTYPES
  36.  
  37. #if defined (__GNUC__) && __GNUC__ == 1
  38. #define alloca __builtin_alloca
  39. #endif
  40.  
  41. /* The m88k and mips ports make use of fancy_abort to give possibly helpful
  42.    abort information rather than just dumping core.  They do it in their
  43.    tm-* files.  It seems more logical that this is a characteristic of
  44.    the host machine and not the target machine, so we do it here. */
  45.  
  46. #define abort fancy_abort       /* give possibly helpful abort info */
  47.