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

#includes malloc.h instead of alloc.h (but only if not FreeBSD).

parent e491d994
Branches
Tags
No related merge requests found
......@@ -37,7 +37,6 @@
#include <time.h>
#include <fcntl.h>
#include <alloc.h>
#include <ctype.h>
#include <stdio.h>
#include <string.h>
......@@ -51,6 +50,9 @@
#include <io.h>
#include <conio.h>
#endif
#if !defined(__FreeBSD__)
#include <malloc.h> /* malloc prototype */
#endif
#if (defined(__unix__) || defined(_WIN32)) && !defined(__FLAT__)
#define __FLAT__
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment