summaryrefslogtreecommitdiff
path: root/compat.h
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2014-03-31 22:46:58 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2014-03-31 22:46:58 +0200
commitd8b0c45812890670943becd45383f75d57056e52 (patch)
tree055375c12586e9f38f19ce5281f0a2c54de92226 /compat.h
parent1fa71087c9d754b687d52059ee88ca82b45ec1eb (diff)
new version
lots of things changed, but cleanup todo. changelog and consistent stream of small updates will come in the future. Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>
Diffstat (limited to 'compat.h')
-rw-r--r--compat.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/compat.h b/compat.h
deleted file mode 100644
index c17c8fb..0000000
--- a/compat.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#if 1
-#include <strings.h>
-#include <string.h>
-#define xstrcasecmp strcasecmp
-#define xstrncasecmp strncasecmp
-#else
-int xstrcasecmp(const char *s1, const char *s2);
-int xstrncasecmp(const char *s1, const char *s2, size_t len);
-#endif
-
-/* non-ansi */
-void * xstrdup(const char *s);
-
-/* for mingw */
-#include <sys/stat.h>
-#include <sys/types.h>
-int xmkdir(const char *path, mode_t mode);