freebsd-dev/contrib/ntp/include/ntp_malloc.h
1999-12-09 13:01:21 +00:00

20 lines
309 B
C

/*
* 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 */