diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-16 21:28:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-16 21:28:12 +0000 |
commit | 6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch) | |
tree | ee423c619fad03813234b9362694a17f3a638f0b /lib/libcompat/regexp/regexp.h | |
parent | c707cb295fc3cac8d8feb343e949e0dcf71b8476 (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/libcompat/regexp/regexp.h')
-rw-r--r-- | lib/libcompat/regexp/regexp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libcompat/regexp/regexp.h b/lib/libcompat/regexp/regexp.h index c195195fedc..28c866acfe7 100644 --- a/lib/libcompat/regexp/regexp.h +++ b/lib/libcompat/regexp/regexp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: regexp.h,v 1.3 1996/07/24 05:56:57 downsj Exp $ */ +/* $OpenBSD: regexp.h,v 1.4 2002/02/16 21:27:26 millert Exp $ */ /* $NetBSD: regexp.h,v 1.3 1994/10/26 00:56:15 cgd Exp $ */ /* @@ -72,10 +72,10 @@ typedef struct regexp { #include <sys/cdefs.h> __BEGIN_DECLS -regexp *v8_regcomp __P((const char *)); -int v8_regexec __P((const regexp *, const char *)); -void v8_regsub __P((const regexp *, const char *, char *)); -void v8_regerror __P((const char *)); +regexp *v8_regcomp(const char *); +int v8_regexec(const regexp *, const char *); +void v8_regsub(const regexp *, const char *, char *); +void v8_regerror(const char *); __END_DECLS #endif /* !_REGEXP_H_ */ |