blob: 0079cb700ed1f58579b3291393161a3b60d50f13 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* 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 */
|