summaryrefslogtreecommitdiff
path: root/src/stropts
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-10 15:20:54 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-10 15:20:54 -0500
commitb510889c88ecb683239b7ee3ad4f45c04846a594 (patch)
tree8187e82ffda9830a5f1782a463a88f2fbcbcacf7 /src/stropts
parent1853f17e620b15ff372255041b829f5d3c1dbfcf (diff)
add missing symbols
Diffstat (limited to 'src/stropts')
-rw-r--r--src/stropts/struct_strbuf.c11
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)
+*/