Module Name: src
Committed By: snj
Date: Thu Apr 23 02:40:16 UTC 2009
Modified Files:
src/lib/libc/db/hash [netbsd-4]: hash_buf.c
Log Message:
Pull up following revision(s) (requested by christos in ticket #1310):
lib/libc/db/hash/hash_buf.c: revision 1.16 via patch
Include string.h for memset prototype.
To generate a diff of this commit:
cvs rdiff -u -r1.11.10.1 -r1.11.10.2 src/lib/libc/db/hash/hash_buf.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/db/hash/hash_buf.c
diff -u src/lib/libc/db/hash/hash_buf.c:1.11.10.1 src/lib/libc/db/hash/hash_buf.c:1.11.10.2
--- src/lib/libc/db/hash/hash_buf.c:1.11.10.1 Thu Apr 23 02:38:26 2009
+++ src/lib/libc/db/hash/hash_buf.c Thu Apr 23 02:40:16 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: hash_buf.c,v 1.11.10.1 2009/04/23 02:38:26 snj Exp $ */
+/* $NetBSD: hash_buf.c,v 1.11.10.2 2009/04/23 02:40:16 snj Exp $ */
/*-
* Copyright (c) 1990, 1993, 1994
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)hash_buf.c 8.5 (Berkeley) 7/15/94";
#else
-__RCSID("$NetBSD: hash_buf.c,v 1.11.10.1 2009/04/23 02:38:26 snj Exp $");
+__RCSID("$NetBSD: hash_buf.c,v 1.11.10.2 2009/04/23 02:40:16 snj Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -67,6 +67,7 @@
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#ifdef DEBUG
#include <assert.h>