blob: fa85fc88637f5b6f683e543d66efe3e726379236 [file] [log] [blame]
John Criswell7a73b802003-06-30 21:59:07 +00001/*
2 * Header file: malloc.h
3 *
4 * Description:
5 * This header file includes the infamous malloc.h header file if the
6 * autoconf system has found it. It hides all of the autoconf details
7 * from the rest of the application source code.
8 */
9
10#ifndef _SUPPORT_MALLOC_H
11#define _SUPPORT_MALLOC_H
12
13#include "Config/config.h"
14
15#ifdef HAVE_MALLOC_H
16#include <malloc.h>
17#endif
18
19#endif
20