NetBSD/dist/ntp/include/ntp_malloc.h
drochner d5e6f1b80b resolve conflicts
(in this case, throw away all local modifications; I'll start patching
from scratch)
2003-12-04 16:23:34 +00:00

22 lines
379 B
C

/* $NetBSD: ntp_malloc.h,v 1.2 2003/12/04 16:23:36 drochner Exp $ */
/*
* Define malloc and friends.
*/
#ifndef _ntp_malloc_h
#define _ntp_malloc_h
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#else /* HAVE_STDLIB_H */
# ifdef HAVE_MALLOC_H
# include <malloc.h>
# endif
#endif /* HAVE_STDLIB_H */
#endif /* _ntp_malloc_h */