summaryrefslogtreecommitdiff
path: root/src/regex/regmatch_t.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/regex/regmatch_t.h')
-rw-r--r--src/regex/regmatch_t.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/regex/regmatch_t.h b/src/regex/regmatch_t.h
new file mode 100644
index 00000000..0525530a
--- /dev/null
+++ b/src/regex/regmatch_t.h
@@ -0,0 +1,10 @@
+#include <regex.h>
+
+typedef struct {
+ regoff_t rm_so;
+ regoff_t rm_eo;
+} regmatch_t;
+/*
+POSIX(2)
+*/
+