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