summaryrefslogtreecommitdiff
path: root/src/glob/glob_t.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/glob/glob_t.h')
-rw-r--r--src/glob/glob_t.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/glob/glob_t.h b/src/glob/glob_t.h
new file mode 100644
index 00000000..21fcf4f6
--- /dev/null
+++ b/src/glob/glob_t.h
@@ -0,0 +1,11 @@
+#include <glob.h>
+
+typedef struct {
+ size_t gl_pathc;
+ char ** gl_pathv;
+ size_t gl_offs;
+} glob_t;
+/*
+POSIX(2)
+*/
+