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