diff options
author | Jeff Law <law@redhat.com> | 1994-02-24 15:11:19 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1994-02-24 15:11:19 +0000 |
commit | cb6af92833cfaee367034ac5c563d6fca4b041a9 (patch) | |
tree | 990143775fe63459e1ea10834b0398d5228821e6 /gas | |
parent | d40b1d877ec59e2d4d53c4633bc1c644dfd05ce1 (diff) | |
download | fsf-binutils-gdb-cb6af92833cfaee367034ac5c563d6fca4b041a9.zip fsf-binutils-gdb-cb6af92833cfaee367034ac5c563d6fca4b041a9.tar.gz fsf-binutils-gdb-cb6af92833cfaee367034ac5c563d6fca4b041a9.tar.bz2 |
* config/ho-hppaosf.h: Fix braino in test for ANSI-C.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/ho-hppaosf.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 5a8a2e5..9e6e3b2 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +Thu Feb 24 07:10:31 1994 Jeffrey A. Law (law@snake.cs.utah.edu) + + * config/ho-hppaosf.h: Fix braino in test for ANSI-C. + Wed Feb 23 16:51:43 1994 Jeffrey A. Law (law@snake.cs.utah.edu) * write.c (write_contents): Give the user a reasonable error diff --git a/gas/config/ho-hppaosf.h b/gas/config/ho-hppaosf.h index 3cef60f..2cc2804 100644 --- a/gas/config/ho-hppaosf.h +++ b/gas/config/ho-hppaosf.h @@ -22,7 +22,7 @@ #define M_HPPAOSF 1 -#ifdef __STDC__ != 1 +#if __STDC__ != 1 #define NO_STDARG #endif /* not ansi */ |