aboutsummaryrefslogtreecommitdiff
path: root/gas/strstr.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/strstr.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/strstr.c')
-rw-r--r--gas/strstr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/strstr.c b/gas/strstr.c
index 717ec1f..7c7074a 100644
--- a/gas/strstr.c
+++ b/gas/strstr.c
@@ -20,7 +20,7 @@
/* If your compiler is really ansi, then you don't need this. */
-#ifndef __STDC__
+#if __STDC__ != 1
#define SIZET int
@@ -50,6 +50,6 @@ char *wanted;
return(scan);
} /* strstr() */
-#endif /* __STDC__ */
+#endif /* not __STDC__ */
/* end of strstr.c */