summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormillert <>1997-07-01 05:54:42 +0000
committermillert <>1997-07-01 05:54:42 +0000
commit0386451a8fc5f9f7a605645495c245e380734867 (patch)
tree05cd97b96c9f5f7ef46dd9eb93ab262552fa5052
parent7c80e68d6dfd31c2ae03e92de886109d39d3e446 (diff)
downloadopenbsd-0386451a8fc5f9f7a605645495c245e380734867.tar.gz
openbsd-0386451a8fc5f9f7a605645495c245e380734867.tar.bz2
openbsd-0386451a8fc5f9f7a605645495c245e380734867.zip
Include <stdlib.h> for malloc() proto.
-rw-r--r--src/lib/libc/stdlib/tsearch.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/libc/stdlib/tsearch.c b/src/lib/libc/stdlib/tsearch.c
index defa8a3006..562ace1845 100644
--- a/src/lib/libc/stdlib/tsearch.c
+++ b/src/lib/libc/stdlib/tsearch.c
@@ -11,6 +11,7 @@
11/*LINTLIBRARY*/ 11/*LINTLIBRARY*/
12 12
13#include <search.h> 13#include <search.h>
14#include <stdlib.h>
14 15
15typedef struct node_t { 16typedef struct node_t {
16 char *key; 17 char *key;