Skip to content
Snippets Groups Projects
Commit e1c3b1ad authored by deuce's avatar deuce
Browse files

include malloc.h for alloca() on Win32.

parent affc86e6
No related branches found
No related tags found
No related merge requests found
#include <stdlib.h> #include <stdlib.h>
#include <ciolib.h> #include <ciolib.h>
#if defined(_WIN32)
#include <malloc.h> /* alloca() on Win32 */
#endif
#include "attrs.h" #include "attrs.h"
......
...@@ -3,6 +3,9 @@ ...@@ -3,6 +3,9 @@
#include <stdlib.h> #include <stdlib.h>
#include <ciolib.h> #include <ciolib.h>
#if defined(_WIN32)
#include <malloc.h> /* alloca() on Win32 */
#endif
#include "crt.h" #include "crt.h"
#include "key.h" #include "key.h"
......
...@@ -5,6 +5,9 @@ ...@@ -5,6 +5,9 @@
#include <ciolib.h> #include <ciolib.h>
#include <gen_defs.h> #include <gen_defs.h>
#if defined(_WIN32)
#include <malloc.h> /* alloca() on Win32 */
#endif
#include "crt.h" #include "crt.h"
#include "syncdraw.h" #include "syncdraw.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment