aboutsummaryrefslogtreecommitdiff
path: root/gcc/scan.c
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-10-26 02:48:04 +0000
committerRichard Stallman <rms@gnu.org>1993-10-26 02:48:04 +0000
commit13ac10d7fd3244ebab9629a935b99df38227f362 (patch)
tree20987474dc479d6f9fa44473a26a597ed2fddae8 /gcc/scan.c
parentb65be498b735ac6ef4249053c4020a9a8f9eb816 (diff)
downloadgcc-13ac10d7fd3244ebab9629a935b99df38227f362.zip
gcc-13ac10d7fd3244ebab9629a935b99df38227f362.tar.gz
gcc-13ac10d7fd3244ebab9629a935b99df38227f362.tar.bz2
(scan_string, skip_spaces): Add newline before fn name.
From-SVN: r5889
Diffstat (limited to 'gcc/scan.c')
-rw-r--r--gcc/scan.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/scan.c b/gcc/scan.c
index a4980ea..a278807 100644
--- a/gcc/scan.c
+++ b/gcc/scan.c
@@ -108,7 +108,8 @@ scan_ident (fp, s, c)
return c;
}
-int scan_string (fp, s, init)
+int
+scan_string (fp, s, init)
register FILE *fp;
register sstring *s;
{
@@ -140,7 +141,8 @@ int scan_string (fp, s, init)
/* Skip horizontal white spaces (spaces, tabs, and C-style comments). */
-int skip_spaces (fp, c)
+int
+skip_spaces (fp, c)
register FILE *fp;
int c;
{