diff options
author | Thomas Fitzsimmons <fitzsim@redhat.com> | 2002-06-24 23:05:08 +0000 |
---|---|---|
committer | Thomas Fitzsimmons <fitzsim@redhat.com> | 2002-06-24 23:05:08 +0000 |
commit | d5487d3fb771c118a7568b95e08d7a4ebebce7fa (patch) | |
tree | eafdb0cc409eb40355b4ef19655cdd48d9147eaf /newlib/libc/search/hash_func.c | |
parent | 59c6d6c4b5ed8ddfff8b3fef309ff435322c38bc (diff) | |
download | cygnal-d5487d3fb771c118a7568b95e08d7a4ebebce7fa.tar.gz cygnal-d5487d3fb771c118a7568b95e08d7a4ebebce7fa.tar.bz2 cygnal-d5487d3fb771c118a7568b95e08d7a4ebebce7fa.zip |
* libc/search/db_local.h: New file.
* libc/include/db.h: Remove.
* libc/search/Makefile.am (LIB_SOURCES): Add db_local.h.
* libc/search/hash.c (MIN,MAX): Add macros. Change <db.h> to
"db_local.h".
* libc/search/hash_bigkey.c: Likewise.
* libc/search/hash_buf.c: Likewise.
* libc/search/hash_func.c: Likewise.
* libc/search/hash_log2.c: Likewise.
* libc/search/hash_page.c: Likewise.
Diffstat (limited to 'newlib/libc/search/hash_func.c')
-rw-r--r-- | newlib/libc/search/hash_func.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/search/hash_func.c b/newlib/libc/search/hash_func.c index deeb21e60..52cb31ccb 100644 --- a/newlib/libc/search/hash_func.c +++ b/newlib/libc/search/hash_func.c @@ -40,7 +40,7 @@ static char sccsid[] = "@(#)hash_func.c 8.2 (Berkeley) 2/21/94"; #include <sys/cdefs.h> #include <sys/types.h> -#include <db.h> +#include "db_local.h" #include "hash.h" #include "page.h" #include "extern.h" |