16 lines
263 B
C
16 lines
263 B
C
/*
|
|
* Define malloc and friends.
|
|
*/
|
|
#ifndef _ntp_malloc_h
|
|
|
|
#define _ntp_malloc_h
|
|
#ifdef NTP_POSIX_SOURCE
|
|
#include <stdlib.h>
|
|
#else /* NTP_POSIX_SOURCE */
|
|
#ifdef HAVE_MALLOC_H
|
|
#include <malloc.h>
|
|
#endif
|
|
#endif /* NTP_POSIX_SOURCE */
|
|
|
|
#endif /* _ntp_malloc_h */
|