Module Name:    src
Committed By:   snj
Date:           Thu Apr 23 02:34:14 UTC 2009

Modified Files:
        src/lib/libc/db/hash [netbsd-5]: hash_buf.c

Log Message:
Pull up following revision(s) (requested by christos in ticket #719):
        lib/libc/db/hash/hash_buf.c: revision 1.16
Include string.h for memset prototype.


To generate a diff of this commit:
cvs rdiff -u -r1.14.4.1 -r1.14.4.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.14.4.1 src/lib/libc/db/hash/hash_buf.c:1.14.4.2
--- src/lib/libc/db/hash/hash_buf.c:1.14.4.1	Thu Apr 23 02:33:18 2009
+++ src/lib/libc/db/hash/hash_buf.c	Thu Apr 23 02:34:14 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: hash_buf.c,v 1.14.4.1 2009/04/23 02:33:18 snj Exp $	*/
+/*	$NetBSD: hash_buf.c,v 1.14.4.2 2009/04/23 02:34:14 snj Exp $	*/
 
 /*-
  * Copyright (c) 1990, 1993, 1994
@@ -37,7 +37,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: hash_buf.c,v 1.14.4.1 2009/04/23 02:33:18 snj Exp $");
+__RCSID("$NetBSD: hash_buf.c,v 1.14.4.2 2009/04/23 02:34:14 snj Exp $");
 
 /*
  * PACKAGE: hash
@@ -61,6 +61,7 @@
 #include <stddef.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <assert.h>
 
 #include <db.h>

Reply via email to