Skip to content
Snippets Groups Projects
Commit 6a836969 authored by slevy's avatar slevy
Browse files

include malloc.h if system has it.

parent dc2b5904
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,9 @@
* Illinois Open Source License; see the file LICENSE.partiview for details.
*/
#ifdef HAVE_MALLOC_H
# include <malloc.h>
#endif
#ifndef __GNUC__
# if HAVE_ALLOCA_H
# include <alloca.h>
......
......@@ -22,6 +22,9 @@ extern "C" {
# endif
#endif
#ifdef HAVE_MALLOC_H
# include <malloc.h>
#endif
#ifndef __GNUC__
# if HAVE_ALLOCA_H
# include <alloca.h>
......
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