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
Branches
Tags
No related merge requests found
#include <stdlib.h>
#include <ciolib.h>
#if defined(_WIN32)
#include <malloc.h> /* alloca() on Win32 */
#endif
#include "attrs.h"
......
......@@ -3,6 +3,9 @@
#include <stdlib.h>
#include <ciolib.h>
#if defined(_WIN32)
#include <malloc.h> /* alloca() on Win32 */
#endif
#include "crt.h"
#include "key.h"
......
......@@ -5,6 +5,9 @@
#include <ciolib.h>
#include <gen_defs.h>
#if defined(_WIN32)
#include <malloc.h> /* alloca() on Win32 */
#endif
#include "crt.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