=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/Attic/man_hash.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- src/usr.bin/mandoc/Attic/man_hash.c 2014/03/21 22:17:01 1.16 +++ src/usr.bin/mandoc/Attic/man_hash.c 2014/04/20 16:44:44 1.17 @@ -1,4 +1,4 @@ -/* $Id: man_hash.c,v 1.16 2014/03/21 22:17:01 schwarze Exp $ */ +/* $Id: man_hash.c,v 1.17 2014/04/20 16:44:44 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * @@ -44,6 +44,7 @@ */ static unsigned char table[26 * HASH_DEPTH]; + /* * XXX - this hash has global scope, so if intended for use as a library * with multiple callers, it will need re-invocation protection. @@ -55,8 +56,7 @@ memset(table, UCHAR_MAX, sizeof(table)); - assert(/* LINTED */ - MAN_MAX < UCHAR_MAX); + assert(MAN_MAX < UCHAR_MAX); for (i = 0; i < (int)MAN_MAX; i++) { x = man_macronames[i][0]; @@ -74,7 +74,6 @@ assert(j < HASH_DEPTH); } } - enum mant man_hash_find(const char *tmp)