aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
{