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/input-scrub.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/input-scrub.c')
-rw-r--r-- | gas/input-scrub.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/input-scrub.c b/gas/input-scrub.c index a5fcd78..ddd0619 100644 --- a/gas/input-scrub.c +++ b/gas/input-scrub.c @@ -1,5 +1,5 @@ /* input_scrub.c - Break up input buffers into whole numbers of lines. - Copyright (C) 1987, 1990, 1991 Free Software Foundation, Inc. + Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -105,11 +105,11 @@ struct input_save { char *saved_position; /* Caller's saved position in buf */ }; -#ifdef __STDC__ +#if __STDC__ == 1 static void as_1_char(unsigned int c, FILE *stream); #else /* __STDC__ */ static void as_1_char(); -#endif /* __STDC__ */ +#endif /* not __STDC__ */ /* Push the state of input reading and scrubbing so that we can #include. The return value is a 'void *' (fudged for old compilers) to a save |