Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/common/lib/libc/gen include string.h for memset



details:   https://anonhg.NetBSD.org/src/rev/d0d8598c99b2
branches:  trunk
changeset: 770362:d0d8598c99b2
user:      yamt <yamt%NetBSD.org@localhost>
date:      Fri Oct 14 15:15:27 2011 +0000

description:
include string.h for memset

diffstat:

 common/lib/libc/gen/radixtree.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (32 lines):

diff -r 7a4e37491bd3 -r d0d8598c99b2 common/lib/libc/gen/radixtree.c
--- a/common/lib/libc/gen/radixtree.c   Fri Oct 14 14:38:20 2011 +0000
+++ b/common/lib/libc/gen/radixtree.c   Fri Oct 14 15:15:27 2011 +0000
@@ -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 @@
 #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



Home | Main Index | Thread Index | Old Index