diff options
Diffstat (limited to 'include/unistd.h')
-rw-r--r-- | include/unistd.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h new file mode 100644 index 000000000..75e75d3e8 --- /dev/null +++ b/include/unistd.h @@ -0,0 +1,8 @@ +#ifndef __UNISTD_H__
+#define __UNISTD_H__
+
+#define strcasecmp _stricmp
+#define snprintf _snprintf
+#define strdup _strdup
+
+#endif
|