diff options
-rw-r--r-- | usr.sbin/config/hash.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/usr.sbin/config/hash.c b/usr.sbin/config/hash.c index e9fda768a6b..d387c27a52d 100644 --- a/usr.sbin/config/hash.c +++ b/usr.sbin/config/hash.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash.c,v 1.16 2014/05/18 09:29:54 espie Exp $ */ +/* $OpenBSD: hash.c,v 1.17 2015/01/16 16:25:50 deraadt Exp $ */ /* $NetBSD: hash.c,v 1.4 1996/11/07 22:59:43 gwr Exp $ */ /* @@ -49,17 +49,6 @@ #include "config.h" /* - * These are really for MAKE_BOOTSTRAP but harmless. - * XXX - Why not just use malloc in here, anyway? - */ -#ifndef ALIGNBYTES -#define ALIGNBYTES 3 -#endif -#ifndef ALIGN -#define ALIGN(p) (((long)(p) + ALIGNBYTES) &~ ALIGNBYTES) -#endif - -/* * Interned strings are kept in a hash table. By making each string * unique, the program can compare strings by comparing pointers. */ |