diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-06-22 18:32:23 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-06-22 18:32:23 -0400 |
commit | 6dd685198356bd27e08dd0151b198eeca5487107 (patch) | |
tree | 0eba8330a2e47101bf1a2d444843c1020b586483 /gcc | |
parent | 0fffa5e134c454a2a5b28ebf78bd28c1e84e0a5f (diff) | |
download | gcc-6dd685198356bd27e08dd0151b198eeca5487107.zip gcc-6dd685198356bd27e08dd0151b198eeca5487107.tar.gz gcc-6dd685198356bd27e08dd0151b198eeca5487107.tar.bz2 |
(HZ): Now 100 and don't define if already defined.
From-SVN: r10026
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m68k/xm-atari.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/config/m68k/xm-atari.h b/gcc/config/m68k/xm-atari.h index bb637ae..a28a986 100644 --- a/gcc/config/m68k/xm-atari.h +++ b/gcc/config/m68k/xm-atari.h @@ -1,6 +1,6 @@ /* Definitions of host machine for GNU compiler. Atari TT ASV version. - Copyright (C) 1994 Free Software Foundation, Inc. + Copyright (C) 1994, 1995 Free Software Foundation, Inc. This file is part of GNU CC. @@ -23,9 +23,11 @@ Boston, MA 02111-1307, USA. */ #define HAVE_VPRINTF /* Host has vprintf() in library */ -/* ASV does not define HZ, so we have to do it ourselves. */ +/* Add HZ define if missing */ -#define HZ 128 /* System clock */ +#ifndef HZ +#define HZ 100 /* System clock */ +#endif /* Define FULL_PROTOTYPES for protoize.c, to get <unistd.h> included. We need this file for things like R_OK, not necessarily prototypes. */ |