OSDN Git Service

Remove change of Oct 4.
[pf3gnuchains/gcc-fork.git] / gcc / bi-lexer.c
index 3391ca6..0ec0b1d 100644 (file)
@@ -1,5 +1,5 @@
 /* Lexer for scanner of bytecode definition file.
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright (C) 1993, 1995 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -15,19 +15,16 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with GNU CC; see the file COPYING.  If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
+the Free Software Foundation, 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.  */
 
 #include <stdio.h>
 #include "hconfig.h"
 #include "bi-parser.h"
 
-/* Current read buffer and point */
-static char *buffer = NULL;
-static char *inpoint = NULL;
-
 
 /* Safely allocate NBYTES bytes of memory.  Returns pointer to block of
-   memory. */
+   memory.  */
 
 static char *
 xmalloc (nbytes)
@@ -46,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)
@@ -71,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 ()