Module Name: src
Committed By: yamt
Date: Fri Oct 14 15:15:27 UTC 2011
Modified Files:
src/common/lib/libc/gen: radixtree.c
Log Message:
include string.h for memset
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/common/lib/libc/gen/radixtree.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/common/lib/libc/gen/radixtree.c
diff -u src/common/lib/libc/gen/radixtree.c:1.7 src/common/lib/libc/gen/radixtree.c:1.8
--- src/common/lib/libc/gen/radixtree.c:1.7 Thu May 19 10:06:56 2011
+++ src/common/lib/libc/gen/radixtree.c Fri Oct 14 15:15:27 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: radixtree.c,v 1.7 2011/05/19 10:06:56 yamt Exp $ */
+/* $NetBSD: radixtree.c,v 1.8 2011/10/14 15:15:27 yamt Exp $ */
/*-
* Copyright (c)2011 YAMAMOTO Takashi,
@@ -41,7 +41,7 @@
#include <sys/cdefs.h>
#if defined(_KERNEL) || defined(_STANDALONE)
-__KERNEL_RCSID(0, "$NetBSD: radixtree.c,v 1.7 2011/05/19 10:06:56 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: radixtree.c,v 1.8 2011/10/14 15:15:27 yamt Exp $");
#include <sys/param.h>
#include <sys/errno.h>
#include <sys/pool.h>
@@ -51,11 +51,12 @@ __KERNEL_RCSID(0, "$NetBSD: radixtree.c,
#include <lib/libsa/stand.h>
#endif /* defined(_STANDALONE) */
#else /* defined(_KERNEL) || defined(_STANDALONE) */
-__RCSID("$NetBSD: radixtree.c,v 1.7 2011/05/19 10:06:56 yamt Exp $");
+__RCSID("$NetBSD: radixtree.c,v 1.8 2011/10/14 15:15:27 yamt Exp $");
#include <assert.h>
#include <errno.h>
#include <stdbool.h>
#include <stdlib.h>
+#include <string.h>
#if 1
#define KASSERT assert
#else