diff options
| author | Jakob Kaivo <jkk@ung.org> | 2019-02-10 15:20:54 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2019-02-10 15:20:54 -0500 |
| commit | b510889c88ecb683239b7ee3ad4f45c04846a594 (patch) | |
| tree | 8187e82ffda9830a5f1782a463a88f2fbcbcacf7 /src | |
| parent | 1853f17e620b15ff372255041b829f5d3c1dbfcf (diff) | |
add missing symbols
Diffstat (limited to 'src')
| -rw-r--r-- | src/stropts/struct_strbuf.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/stropts/struct_strbuf.c b/src/stropts/struct_strbuf.c new file mode 100644 index 00000000..37e10700 --- /dev/null +++ b/src/stropts/struct_strbuf.c @@ -0,0 +1,11 @@ +#include <stropts.h> + +struct strbuf { + int maxlen; + int len; + char *buf; +}; + +/* +XOPEN(400) +*/ |
