John Criswell | 2efc5b5 | 2003-10-20 20:11:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * The LLVM Compiler Infrastructure |
| 3 | * |
| 4 | * This file was developed by the LLVM research group and is distributed under |
| 5 | * the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 6 | * |
| 7 | ****************************************************************************** |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 8 | * |
| 9 | * Description: |
| 10 | * This header file includes the infamous malloc.h header file if the |
| 11 | * autoconf system has found it. It hides all of the autoconf details |
| 12 | * from the rest of the application source code. |
| 13 | */ |
| 14 | |
| 15 | #ifndef _SUPPORT_MALLOC_H |
| 16 | #define _SUPPORT_MALLOC_H |
| 17 | |
| 18 | #include "Config/config.h" |
| 19 | |
| 20 | #ifdef HAVE_MALLOC_H |
| 21 | #include <malloc.h> |
| 22 | #endif |
| 23 | |
| 24 | #endif |
| 25 | |