about summary refs log tree commit diff
path: root/src/libs6ps/s6ps-internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs6ps/s6ps-internal.h')
-rw-r--r--src/libs6ps/s6ps-internal.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/libs6ps/s6ps-internal.h b/src/libs6ps/s6ps-internal.h
new file mode 100644
index 0000000..5f205da
--- /dev/null
+++ b/src/libs6ps/s6ps-internal.h
@@ -0,0 +1,17 @@
+/* ISC license. */
+
+#ifndef S6PS_INTERNAL_H
+#define S6PS_INTERNAL_H
+
+#include <stdint.h>
+#include <stddef.h>
+
+typedef struct dius_s dius_t, *dius_t_ref ;
+struct dius_s
+{
+  uint32_t left ;
+  size_t right ;
+} ;
+#define DIUS_ZERO { .left = 0, .right = 0 }
+
+#endif