From 6dd685198356bd27e08dd0151b198eeca5487107 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Thu, 22 Jun 1995 18:32:23 -0400 Subject: [PATCH] (HZ): Now 100 and don't define if already defined. From-SVN: r10026 --- gcc/config/m68k/xm-atari.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gcc/config/m68k/xm-atari.h b/gcc/config/m68k/xm-atari.h index bb637aeefac..a28a98606ef 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 included. We need this file for things like R_OK, not necessarily prototypes. */ -- 2.30.2