(scan_string, skip_spaces): Add newline before fn name.
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 26 Oct 1993 02:48:04 +0000 (02:48 +0000)
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 26 Oct 1993 02:48:04 +0000 (02:48 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5889 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/scan.c

index a4980ea..a278807 100644 (file)
@@ -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;
 {