diff options
author | 2004-11-30 17:04:23 +0000 | |
---|---|---|
committer | 2004-11-30 17:04:23 +0000 | |
commit | a1a765374b785807f7f250e74238e14e6f25a199 (patch) | |
tree | 42be6b51cd70b81c92a2bb63d37e68e89b377baf /lib/libc/regex/regexec.c | |
parent | need to pass MAKEOBJDIR to prereq and includes (diff) | |
download | wireguard-openbsd-a1a765374b785807f7f250e74238e14e6f25a199.tar.xz wireguard-openbsd-a1a765374b785807f7f250e74238e14e6f25a199.zip |
remove useless comments, once used for header file generation and delete
parameter names from prototypes. ok millert@
Diffstat (limited to 'lib/libc/regex/regexec.c')
-rw-r--r-- | lib/libc/regex/regexec.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/libc/regex/regexec.c b/lib/libc/regex/regexec.c index 81197098cbe..c644b4ff41b 100644 --- a/lib/libc/regex/regexec.c +++ b/lib/libc/regex/regexec.c @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)regexec.c 8.3 (Berkeley) 3/20/94"; #else -static char rcsid[] = "$OpenBSD: regexec.c,v 1.9 2004/10/17 17:58:54 otto Exp $"; +static char rcsid[] = "$OpenBSD: regexec.c,v 1.10 2004/11/30 17:04:23 otto Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -137,14 +137,6 @@ static char rcsid[] = "$OpenBSD: regexec.c,v 1.9 2004/10/17 17:58:54 otto Exp $" /* - regexec - interface for matching - = extern int regexec(const regex_t *, const char *, size_t, \ - = regmatch_t [], int); - = #define REG_NOTBOL 00001 - = #define REG_NOTEOL 00002 - = #define REG_STARTEND 00004 - = #define REG_TRACE 00400 // tracing of execution - = #define REG_LARGE 01000 // force large representation - = #define REG_BACKR 02000 // force use of backref code * * We put this here so we can exploit knowledge of the state representation * when choosing which matcher to call. Also, by this point the matchers |