summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2015-04-06 13:37:11 +0200
committerAndreas Baumann <abaumann@yahoo.com>2015-04-06 13:37:11 +0200
commit0030a6cd14a444176d405fe6c459bac2a9b9eaeb (patch)
tree3695b4d61b22f0905b26e9a3f8f64f303685a0fa
parentf5a3388d728e088e7db5642a28fc503ab818bba0 (diff)
downloadbiruda-0030a6cd14a444176d405fe6c459bac2a9b9eaeb.tar.gz
biruda-0030a6cd14a444176d405fe6c459bac2a9b9eaeb.tar.bz2
fixed a missing <sys/types.h> (showed off_t undefined on Windows)
-rw-r--r--src/master.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/master.c b/src/master.c
index a7dbc26..ba259f6 100644
--- a/src/master.c
+++ b/src/master.c
@@ -10,6 +10,7 @@
#include <stdio.h>
#include <string.h>
+#include <sys/types.h>
#ifndef _WIN32
#include <unistd.h>
#endif