summaryrefslogtreecommitdiff
path: root/src/wordexp/wordexp_t.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wordexp/wordexp_t.c')
-rw-r--r--src/wordexp/wordexp_t.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/wordexp/wordexp_t.c b/src/wordexp/wordexp_t.c
new file mode 100644
index 00000000..1bf6eac9
--- /dev/null
+++ b/src/wordexp/wordexp_t.c
@@ -0,0 +1,12 @@
+#include <wordexp.h>
+
+typedef struct {
+ size_t we_wordc;
+ char ** we_wordv;
+ size_t we_offs;
+} wordexp_t;
+
+/*
+POSIX(2)
+*/
+