summaryrefslogtreecommitdiff
path: root/usr.sbin/gspa
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
commit6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch)
treeee423c619fad03813234b9362694a17f3a638f0b /usr.sbin/gspa
parentc707cb295fc3cac8d8feb343e949e0dcf71b8476 (diff)
Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
Diffstat (limited to 'usr.sbin/gspa')
-rw-r--r--usr.sbin/gspa/gspahextoc/gspahextoc.l8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/gspa/gspahextoc/gspahextoc.l b/usr.sbin/gspa/gspahextoc/gspahextoc.l
index 1c3fdf10c6b..a0e39b5873e 100644
--- a/usr.sbin/gspa/gspahextoc/gspahextoc.l
+++ b/usr.sbin/gspa/gspahextoc/gspahextoc.l
@@ -35,10 +35,10 @@
unsigned long binads;
- void dumpstart __P((char *address));
- void dumpbuf __P((void));
- void initbuf __P((char *address));
- void checkbuf __P((void));
+ void dumpstart(char *address);
+ void dumpbuf(void);
+ void initbuf(char *address);
+ void checkbuf(void);
%%
:[0-9A-Za-z]+ {if (bufptr>0) dumpbuf(); dumpstart(yytext+1);}
@[0-9A-Za-z]+ {if (bufptr>0) dumpbuf(); initbuf(yytext+1);}