diff options
| author | Jakob Kaivo <jkk@ung.org> | 2019-02-09 16:59:31 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2019-02-09 16:59:31 -0500 |
| commit | d15ecf4db13c4396f8a6e4f948abbb6c1188aee9 (patch) | |
| tree | b57a1da43e567322b0bb75442a3a27497414a344 /src/wordexp/wordexp_t.c | |
| parent | c2df77a517e8651a07e323aaa18c6caa2d77eb1b (diff) | |
merge POSIX.2 identifiers
Diffstat (limited to 'src/wordexp/wordexp_t.c')
| -rw-r--r-- | src/wordexp/wordexp_t.c | 12 |
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) +*/ + |
