summaryrefslogtreecommitdiff
path: root/compat.h
diff options
context:
space:
mode:
Diffstat (limited to 'compat.h')
-rw-r--r--compat.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/compat.h b/compat.h
new file mode 100644
index 0000000..02ad831
--- /dev/null
+++ b/compat.h
@@ -0,0 +1,19 @@
+
+#ifndef _COMPAT_H_
+#define _COMPAT_H_
+
+#ifdef _WIN32
+
+int getopt(int argc, char* const *argv, const char *optstr);
+extern char *optarg;
+extern int optreset;
+extern int optind;
+extern int opterr;
+
+#else
+
+#include <unistd.h>
+
+#endif
+
+#endif /* _COMPAT_H_ */