summaryrefslogtreecommitdiff
path: root/src/time/struct_itimerspec.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/time/struct_itimerspec.c')
-rw-r--r--src/time/struct_itimerspec.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/time/struct_itimerspec.c b/src/time/struct_itimerspec.c
new file mode 100644
index 00000000..20dc4a43
--- /dev/null
+++ b/src/time/struct_itimerspec.c
@@ -0,0 +1,10 @@
+#include <time.h>
+
+struct itimerspec {
+ struct timespec it_interval;
+ struct timespec it_value;
+};
+
+/*
+POSIX(199309)
+*/