Skip to content
Snippets Groups Projects
Commit 1635237a authored by rswindell's avatar rswindell
Browse files

sys/param.h is a Unix-only include file.

parent 3c7bcc23
No related branches found
No related tags found
No related merge requests found
......@@ -42,14 +42,12 @@
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <sys/param.h> /* PATH_MAX */
/* OS Specific */
#if defined(_WIN32)
#include <windows.h>
#endif
#if !defined(__unix__)
#include <io.h>
#include <malloc.h> /* malloc prototype */
#if defined(__unix__)
#include <sys/param.h> /* PATH_MAX */
#endif
#if (defined(__unix__) || defined(_WIN32)) && !defined(__FLAT__)
#define __FLAT__
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment