summaryrefslogtreecommitdiff
path: root/lib/libedit/tokenizer.h
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 /lib/libedit/tokenizer.h
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 'lib/libedit/tokenizer.h')
-rw-r--r--lib/libedit/tokenizer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libedit/tokenizer.h b/lib/libedit/tokenizer.h
index 33cc9753bff..2a5c4d2deb3 100644
--- a/lib/libedit/tokenizer.h
+++ b/lib/libedit/tokenizer.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tokenizer.h,v 1.3 1997/03/14 05:13:08 millert Exp $ */
+/* $OpenBSD: tokenizer.h,v 1.4 2002/02/16 21:27:26 millert Exp $ */
/* $NetBSD: tokenizer.h,v 1.2 1997/01/11 06:48:16 lukem Exp $ */
/*-
@@ -47,9 +47,9 @@
typedef struct tokenizer Tokenizer;
-Tokenizer *tok_init __P((const char *));
-void tok_reset __P((Tokenizer *));
-void tok_end __P((Tokenizer *));
+Tokenizer *tok_init(const char *);
+void tok_reset(Tokenizer *);
+void tok_end(Tokenizer *);
int tok_line __P((Tokenizer *, const char *,
int *, char ***));