aboutsummaryrefslogtreecommitdiff
path: root/gas/app.c
diff options
context:
space:
mode:
authorK. Richard Pixley <rich@cygnus>1992-02-15 21:13:03 +0000
committerK. Richard Pixley <rich@cygnus>1992-02-15 21:13:03 +0000
commit3340f7e5fdd11b6c544714500fca870707793fd0 (patch)
treec8df7d465111ee74f58751a9c604b42060368f44 /gas/app.c
parenta87b3269340cca83c2197909ade48e28023b9cfd (diff)
downloadgdb-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/app.c b/gas/app.c
index 3198bf7..2e2a262 100644
--- a/gas/app.c
+++ b/gas/app.c
@@ -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