diff options
author | K. Richard Pixley <rich@cygnus> | 1992-02-15 21:13:03 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-02-15 21:13:03 +0000 |
commit | 3340f7e5fdd11b6c544714500fca870707793fd0 (patch) | |
tree | c8df7d465111ee74f58751a9c604b42060368f44 /gas/app.c | |
parent | a87b3269340cca83c2197909ade48e28023b9cfd (diff) | |
download | gdb-3340f7e5fdd11b6c544714500fca870707793fd0.zip gdb-3340f7e5fdd11b6c544714500fca870707793fd0.tar.gz gdb-3340f7e5fdd11b6c544714500fca870707793fd0.tar.bz2 |
White space and comment changes. #ifdef __STDC__ becomes #if __STDC__
== 1. Get the declarations right in listing.[hc].
Diffstat (limited to 'gas/app.c')
-rw-r--r-- | gas/app.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* Copyright (C) 1987, 1990, 1991 Free Software Foundation, Inc. +/* Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc. Modified by Allen Wirfs-Brock, Instantiations Inc 2/90 */ @@ -30,7 +30,7 @@ #include <stdio.h> #include "as.h" /* For BAD_CASE() only */ -#if !defined(__STDC__) && !defined(const) +#if (__STDC__ != 1) && !defined(const) #define const /* Nothing */ #endif |