summaryrefslogtreecommitdiff
path: root/lib/hash-pjw.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-10-25 15:29:56 +0000
committerJim Meyering <jim@meyering.net>2003-10-25 15:29:56 +0000
commitbd67ac6ff2e2da0e77df949405406c6bca0e4903 (patch)
treebccd55e25fe59c95eaea73fdb6e920d7c0ed900c /lib/hash-pjw.h
parentfdb31735a27b7ee6f61a24d698ace9d98d166822 (diff)
downloadcoreutils-bd67ac6ff2e2da0e77df949405406c6bca0e4903.tar.xz
Update from gnulib.
Diffstat (limited to 'lib/hash-pjw.h')
-rw-r--r--lib/hash-pjw.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/hash-pjw.h b/lib/hash-pjw.h
index efcda115a..b2a099494 100644
--- a/lib/hash-pjw.h
+++ b/lib/hash-pjw.h
@@ -1,5 +1,5 @@
/* hash-pjw.h -- declaration for a simple hash function
- Copyright 2001 Free Software Foundation, Inc.
+ Copyright (C) 2001, 2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -16,5 +16,6 @@
If not, write to the Free Software Foundation,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-unsigned int
-hash_pjw (const void *x, unsigned int tablesize);
+#include <stddef.h>
+
+size_t hash_pjw (void const *x, size_t tablesize);