diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1996-07-03 22:07:53 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1996-07-03 22:07:53 +0000 |
commit | 0f41302f4736dbb0fbf4690d6430ce581c5a9d80 (patch) | |
tree | e82dd48a4282d7b9e8b1c71b065b52af17254c52 /gcc/bi-lexer.c | |
parent | 9753f1136864a98cca12ab71f0ffe1af4dd84486 (diff) | |
download | gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.zip gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.tar.gz gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.tar.bz2 |
formatting tweaks
From-SVN: r12390
Diffstat (limited to 'gcc/bi-lexer.c')
-rw-r--r-- | gcc/bi-lexer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/bi-lexer.c b/gcc/bi-lexer.c index 6601c52..0ec0b1d 100644 --- a/gcc/bi-lexer.c +++ b/gcc/bi-lexer.c @@ -24,7 +24,7 @@ Boston, MA 02111-1307, USA. */ /* Safely allocate NBYTES bytes of memory. Returns pointer to block of - memory. */ + memory. */ static char * xmalloc (nbytes) @@ -43,7 +43,7 @@ xmalloc (nbytes) /* Safely reallocate BLOCK so its size becomes NBYTES. - The block returned may be different from the one supplied. */ + The block returned may be different from the one supplied. */ static char * xrealloc (block, nbytes) @@ -68,7 +68,7 @@ xrealloc (block, nbytes) purposes here, a sequence of characters that starts with the regexp ``[^ #\t\n(),]'' and is then followed by the regexp ``[^#(),]*''. Any character is accepted if preceded by a backslash, "\\". It is assumed - that the first character has already been checked by the main loop. */ + that the first character has already been checked by the main loop. */ static char * scan_string () |