1 /* $NetBSD: ntp_malloc.h,v 1.1.1.1 2009/12/13 16:54:52 kardel Exp $ */ 2 3 /* 4 * Define malloc and friends. 5 */ 6 #ifndef NTP_MALLOC_H 7 #define NTP_MALLOC_H 8 9 #ifdef HAVE_CONFIG_H 10 # include <config.h> 11 #endif 12 13 #ifdef HAVE_STDLIB_H 14 # include <stdlib.h> 15 #else 16 # ifdef HAVE_MALLOC_H 17 # include <malloc.h> 18 # endif 19 #endif 20 21 #endif /* NTP_MALLOC_H */ 22