aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/m4
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-07-27 22:56:46 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-07-27 22:56:46 +0000
commit18a8f7ea3b6c2fd3def71b2ac79dd7af1342ad67 (patch)
treef042e63b20efd86930572eed62a16dd864b83f6e /usr.bin/m4
parent88497f0c68b1469cbf8560b8c4a022dbc509ceae (diff)
downloadsrc-18a8f7ea3b6c2fd3def71b2ac79dd7af1342ad67.tar.gz
src-18a8f7ea3b6c2fd3def71b2ac79dd7af1342ad67.zip
Remove ohash_int.h forgotten in previous commit
Notes
Notes: svn path=/head/; revision=269163
Diffstat (limited to 'usr.bin/m4')
-rw-r--r--usr.bin/m4/lib/ohash_int.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/usr.bin/m4/lib/ohash_int.h b/usr.bin/m4/lib/ohash_int.h
deleted file mode 100644
index 49e01a4a40f6..000000000000
--- a/usr.bin/m4/lib/ohash_int.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/* $OpenBSD: ohash_int.h,v 1.3 2006/01/16 15:52:25 espie Exp $ */
-/* $FreeBSD$ */
-
-#if HAVE_NBTOOL_CONFIG_H
-#include "nbtool_config.h"
-#endif
-
-#include <sys/types.h>
-#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