summaryrefslogtreecommitdiff
path: root/lib/libcompat/regexp
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1997-07-13 14:26:00 +0000
committerPeter Wemm <peter@FreeBSD.org>1997-07-13 14:26:00 +0000
commit65b3003d2db57c7e7f521f5f091ed7adbc151768 (patch)
tree6cb1cae680da34e1b89adddca017fcd9e7b0e5cf /lib/libcompat/regexp
parent365c3451674ab5dfb12a9ecceb485abc1cdff35c (diff)
Notes
Diffstat (limited to 'lib/libcompat/regexp')
-rw-r--r--lib/libcompat/regexp/regexp.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/libcompat/regexp/regexp.h b/lib/libcompat/regexp/regexp.h
deleted file mode 100644
index 73d6bf412424..000000000000
--- a/lib/libcompat/regexp/regexp.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Definitions etc. for regexp(3) routines.
- *
- * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
- * not the System V one.
- */
-#define NSUBEXP 10
-typedef struct regexp {
- char *startp[NSUBEXP];
- char *endp[NSUBEXP];
- char regstart; /* Internal use only. */
- char reganch; /* Internal use only. */
- char *regmust; /* Internal use only. */
- int regmlen; /* Internal use only. */
- char program[1]; /* Unwarranted chumminess with compiler. */
-} regexp;
-
-extern regexp *regcomp();
-extern int regexec();
-extern void regsub();
-extern void regerror();