summaryrefslogtreecommitdiff
path: root/usr.bin/m4/lib/ohash_int.h
diff options
context:
space:
mode:
authorKiyoshi Aman <kiyoshi.aman+adelie@gmail.com>2019-06-02 10:45:24 -0500
committerKiyoshi Aman <kiyoshi.aman+adelie@gmail.com>2019-06-02 10:45:38 -0500
commit245d006815241af4a2896b03985ecdab7869acbb (patch)
tree625cd4e255ef25983d395cec61c59bcd56e2d5e1 /usr.bin/m4/lib/ohash_int.h
parentd2f4c4ce2165b5ec5a29773fa17aea116865b9dc (diff)
downloaduserland-245d006815241af4a2896b03985ecdab7869acbb.tar.gz
userland-245d006815241af4a2896b03985ecdab7869acbb.tar.bz2
userland-245d006815241af4a2896b03985ecdab7869acbb.tar.xz
userland-245d006815241af4a2896b03985ecdab7869acbb.zip
usr.bin/{m4,man,mesg}: remove, they are handled separately
Diffstat (limited to 'usr.bin/m4/lib/ohash_int.h')
-rw-r--r--usr.bin/m4/lib/ohash_int.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/usr.bin/m4/lib/ohash_int.h b/usr.bin/m4/lib/ohash_int.h
deleted file mode 100644
index 88c818b..0000000
--- a/usr.bin/m4/lib/ohash_int.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* $OpenBSD: ohash_int.h,v 1.3 2006/01/16 15:52:25 espie Exp $ */
-
-#if HAVE_NBTOOL_CONFIG_H
-#include "nbtool_config.h"
-#endif
-
-#include <stddef.h>
-#include <stdint.h>
-#include <stdlib.h>
-#include <string.h>
-#include "ohash.h"
-
-struct _ohash_record {
- u_int32_t hv;
- const char *p;
-};
-
-#define DELETED ((const char *)h)
-#define NONE (h->size)
-
-/* Don't bother changing the hash table if the change is small enough. */
-#define MINSIZE (1UL << 4)
-#define MINDELETED 4