diff options
author | 2002-02-16 21:27:05 +0000 | |
---|---|---|
committer | 2002-02-16 21:27:05 +0000 | |
commit | c72b5b24e14c03dd8b22104fbae0d3921fa2aa37 (patch) | |
tree | 1ac67aab11df5f96856c0e3015d691db7dc9e811 /usr.bin/lex/libmain.c | |
parent | default to rsa keyfile path for non key generation operations where (diff) | |
download | wireguard-openbsd-c72b5b24e14c03dd8b22104fbae0d3921fa2aa37.tar.xz wireguard-openbsd-c72b5b24e14c03dd8b22104fbae0d3921fa2aa37.zip |
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.bin/lex/libmain.c')
-rw-r--r-- | usr.bin/lex/libmain.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/lex/libmain.c b/usr.bin/lex/libmain.c index bd7368a81d0..c03e4e06f8d 100644 --- a/usr.bin/lex/libmain.c +++ b/usr.bin/lex/libmain.c @@ -1,13 +1,13 @@ -/* $OpenBSD: libmain.c,v 1.4 1996/12/14 07:07:56 tholo Exp $ */ +/* $OpenBSD: libmain.c,v 1.5 2002/02/16 21:27:47 millert Exp $ */ /* libmain - flex run-time support library "main" function */ -/* $Header: /home/cvs/src/usr.bin/lex/libmain.c,v 1.4 1996/12/14 07:07:56 tholo Exp $ */ +/* $Header: /home/cvs/src/usr.bin/lex/libmain.c,v 1.5 2002/02/16 21:27:47 millert Exp $ */ #include <sys/cdefs.h> -int yylex __P((void)); -int main __P((int, char **, char **)); +int yylex(void); +int main(int, char **, char **); /* ARGSUSED */ int |