diff options
author | 1997-07-01 05:54:42 +0000 | |
---|---|---|
committer | 1997-07-01 05:54:42 +0000 | |
commit | 581b1b82f954a975e7db1c24730a5c476e6519e1 (patch) | |
tree | 73df11c34b1429c726511ea16fdc24fe2b3a51d3 /lib/libc | |
parent | -Wall cleanliness (diff) | |
download | wireguard-openbsd-581b1b82f954a975e7db1c24730a5c476e6519e1.tar.xz wireguard-openbsd-581b1b82f954a975e7db1c24730a5c476e6519e1.zip |
Include <stdlib.h> for malloc() proto.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/stdlib/tsearch.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/stdlib/tsearch.c b/lib/libc/stdlib/tsearch.c index defa8a30060..562ace1845b 100644 --- a/lib/libc/stdlib/tsearch.c +++ b/lib/libc/stdlib/tsearch.c @@ -11,6 +11,7 @@ /*LINTLIBRARY*/ #include <search.h> +#include <stdlib.h> typedef struct node_t { char *key; |