diff options
author | Andreas Jaeger <aj@suse.de> | 2003-09-14 12:20:17 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2003-09-14 12:20:17 +0000 |
commit | 2da42df615c0489291f8d3e1ce873642755a49c6 (patch) | |
tree | 2294d219a7e8025d03f45821f383cf3692f249ed /binutils/rclex.l | |
parent | 4a4b3fedfec42967926860950ee4fae2f01af98e (diff) | |
download | gdb-2da42df615c0489291f8d3e1ce873642755a49c6.zip gdb-2da42df615c0489291f8d3e1ce873642755a49c6.tar.gz gdb-2da42df615c0489291f8d3e1ce873642755a49c6.tar.bz2 |
* addr2line.c: Convert to ISO C90 prototypes, change PTR, remove
unneeded (void *) casts.
* ar.c: Likewise.
* arlex.l: Likewise.
* arparse.y: Likewise.
* arsup.c: Likewise.
* binemul.c: Likewise.
* binemul.h: Likewise.
* bucomm.c: Likewise.
* bucomm.h: Likewise.
* budbg.h: Likewise.
* budemang.c: Likewise.
* budemang.h: Likewise.
* coffdump.c: Likewise.
* coffgrok.c: Likewise.
* cxxfilt.c: Likewise.
* debug.c: Likewise.
* debug.h: Likewise.
* deflex.l: Likewise.
* dlltool.c: Likewise.
* dlltool.h: Likewise.
* dllwrap.c: Likewise.
* emul_aix.c: Likewise.
* filemode.c: Likewise.
* ieee.c: Likewise.
* nlmconv.c: Likewise.
* nlmconv.h: Likewise.
* nlmheader.y: Likewise.
* nm.c: Likewise.
* prdbg.c: Likewise.
* rclex.l: Likewise.
* rcparse.y: Likewise.
* rdcoff.c: Likewise.
* rddbg.c: Likewise.
* rename.c: Likewise.
* resbin.c: Likewise.
* rescoff.c: Likewise.
* resrc.c: Likewise.
* size.c: Likewise.
* srconv.c: Likewise.
* stabs.c: Likewise.
* strings.c: Likewise.
* sysdump.c: Likewise.
* sysinfo.y: Likewise.
* syslex.l: Likewise.
* unwind-ia64.c: Likewise.
* unwind-ia64.h: Likewise.
* version.c: Likewise.
* windres.c: Likewise.
* windres.h: Likewise.
* winduni.c: Likewise.
* wrstabs.c: Likewise.
Diffstat (limited to 'binutils/rclex.l')
-rw-r--r-- | binutils/rclex.l | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/binutils/rclex.l b/binutils/rclex.l index 3a4f3e1..2735cc1 100644 --- a/binutils/rclex.l +++ b/binutils/rclex.l @@ -1,5 +1,5 @@ %{ /* rclex.l -- lexer for Windows rc files parser */ -/* Copyright 1997, 1998, 1999, 2001, 2002 Free Software Foundation, Inc. +/* Copyright 1997, 1998, 1999, 2001, 2002, 2003 Free Software Foundation, Inc. Written by Ian Lance Taylor, Cygnus Support. This file is part of GNU Binutils. @@ -66,9 +66,9 @@ static struct alloc_string *strings; /* Local functions. */ -static void cpp_line PARAMS ((const char *)); -static char *handle_quotes PARAMS ((const char *, unsigned long *)); -static char *get_string PARAMS ((int)); +static void cpp_line (const char *); +static char *handle_quotes (const char *, unsigned long *); +static char *get_string (int); %} @@ -236,7 +236,7 @@ static char *get_string PARAMS ((int)); %% #ifndef yywrap /* This is needed for some versions of lex. */ -int yywrap () +int yywrap (void) { return 1; } @@ -245,8 +245,7 @@ int yywrap () /* Handle a C preprocessor line. */ static void -cpp_line (s) - const char *s; +cpp_line (const char *s) { int line; char *send, *fn; @@ -301,9 +300,7 @@ cpp_line (s) merged separated by whitespace are merged, as in C. */ static char * -handle_quotes (input, len) - const char *input; - unsigned long *len; +handle_quotes (const char *input, unsigned long *len) { char *ret, *s; const char *t; @@ -447,8 +444,7 @@ handle_quotes (input, len) /* Allocate a string of a given length. */ static char * -get_string (len) - int len; +get_string (int len) { struct alloc_string *as; @@ -465,7 +461,7 @@ get_string (len) when it no longer needs them. */ void -rcparse_discard_strings () +rcparse_discard_strings (void) { struct alloc_string *as; @@ -486,7 +482,7 @@ rcparse_discard_strings () /* Enter rcdata mode. */ void -rcparse_rcdata () +rcparse_rcdata (void) { rcdata_mode = 1; } @@ -494,7 +490,7 @@ rcparse_rcdata () /* Go back to normal mode from rcdata mode. */ void -rcparse_normal () +rcparse_normal (void) { rcdata_mode = 0; } |