LLVM API Documentation
00001 /* 00002 * The LLVM Compiler Infrastructure 00003 * 00004 * This file was developed by the LLVM research group and is distributed under 00005 * the University of Illinois Open Source License. See LICENSE.TXT for details. 00006 * 00007 ****************************************************************************** 00008 * 00009 * Description: 00010 * This header file includes the infamous malloc.h header file if the 00011 * autoconf system has found it. It hides all of the autoconf details 00012 * from the rest of the application source code. 00013 */ 00014 00015 #ifndef _SUPPORT_MALLOC_H 00016 #define _SUPPORT_MALLOC_H 00017 00018 #include "llvm/Config/config.h" 00019 00020 #ifdef HAVE_MALLOC_H 00021 #include <malloc.h> 00022 #endif 00023 00024 #endif 00025