diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-04-10 13:26:05 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-04-10 13:26:05 +0000 |
commit | 5a709d61a37133c04bc540b7c531c49239e71145 (patch) | |
tree | c966d82948d199cb6fbe3ebf72b2838dcc15da99 /regex/regex.h | |
parent | 1abe484249caf1c5e462ce3110c8db09c059c6e8 (diff) |
Notes
Diffstat (limited to 'regex/regex.h')
-rw-r--r-- | regex/regex.h | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/regex/regex.h b/regex/regex.h index cabd66b0528af..20ea7865c0a0f 100644 --- a/regex/regex.h +++ b/regex/regex.h @@ -16,11 +16,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * @@ -100,10 +96,10 @@ typedef struct { #define REG_LARGE 01000 /* force large representation */ #define REG_BACKR 02000 /* force use of backref code */ -int regcomp __P((regex_t *, const RCHAR_T *, int)); -size_t regerror __P((int, const regex_t *, char *, size_t)); -int regexec __P((const regex_t *, - const RCHAR_T *, size_t, regmatch_t [], int)); -void regfree __P((regex_t *)); +int regcomp(regex_t *, const RCHAR_T *, int); +size_t regerror(int, const regex_t *, char *, size_t); +int regexec(const regex_t *, + const RCHAR_T *, size_t, regmatch_t [], int); +void regfree(regex_t *); #endif /* !_REGEX_H_ */ |