repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git]
/
external
/
bsd
/
ntp
/
dist
/
include
/
ntp_malloc.h
blob
720b2926b050590a4fb650bfe74f94f3650443f8
1
/* $NetBSD$ */
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 */