diff options
author | millert <> | 1997-07-01 05:54:42 +0000 |
---|---|---|
committer | millert <> | 1997-07-01 05:54:42 +0000 |
commit | 0386451a8fc5f9f7a605645495c245e380734867 (patch) | |
tree | 05cd97b96c9f5f7ef46dd9eb93ab262552fa5052 | |
parent | 7c80e68d6dfd31c2ae03e92de886109d39d3e446 (diff) | |
download | openbsd-0386451a8fc5f9f7a605645495c245e380734867.tar.gz openbsd-0386451a8fc5f9f7a605645495c245e380734867.tar.bz2 openbsd-0386451a8fc5f9f7a605645495c245e380734867.zip |
Include <stdlib.h> for malloc() proto.
-rw-r--r-- | src/lib/libc/stdlib/tsearch.c | 1 |
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 | ||
15 | typedef struct node_t { | 16 | typedef struct node_t { |
16 | char *key; | 17 | char *key; |