=================================================================== RCS file: /cvs/mandoc/Attic/man_hash.c,v retrieving revision 1.2 retrieving revision 1.4 diff -u -p -r1.2 -r1.4 --- mandoc/Attic/man_hash.c 2009/03/23 15:41:09 1.2 +++ mandoc/Attic/man_hash.c 2009/03/31 13:50:19 1.4 @@ -1,4 +1,4 @@ -/* $Id: man_hash.c,v 1.2 2009/03/23 15:41:09 kristaps Exp $ */ +/* $Id: man_hash.c,v 1.4 2009/03/31 13:50:19 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -16,11 +16,7 @@ * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. */ -#include -#include -#include #include -#include #include #include "libman.h" @@ -52,7 +48,7 @@ man_hash_find(const void *arg, const char *tmp) /* TODO */ for (i = 0; i < MAN_MAX; i++) - if (0 == strcasecmp(tmp, man_macronames[i])) + if (0 == strcmp(tmp, man_macronames[i])) return(i); return(MAN_MAX);