summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortsutsui <tsutsui@NetBSD.org>2001-01-26 13:42:11 +0000
committertsutsui <tsutsui@NetBSD.org>2001-01-26 13:42:11 +0000
commitdfd4bf046599e8623c7e38bca5fc182f0b4f446a (patch)
treed1fc8adef1b140426dee13cae6e7825515b21c70
parent34cabf50d68abb6cd4a8be58d7614f0a6365dce5 (diff)
Include string.h for memset() prototype.
-rw-r--r--lib/libc/locale/runenone.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/locale/runenone.c b/lib/libc/locale/runenone.c
index ba5efca1606..fef63c56940 100644
--- a/lib/libc/locale/runenone.c
+++ b/lib/libc/locale/runenone.c
@@ -1,4 +1,4 @@
-/* $NetBSD: runenone.c,v 1.6 2001/01/22 04:42:40 itojun Exp $ */
+/* $NetBSD: runenone.c,v 1.7 2001/01/26 13:42:11 tsutsui Exp $ */
/*-
* Copyright (c) 1993
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)none.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: runenone.c,v 1.6 2001/01/22 04:42:40 itojun Exp $");
+__RCSID("$NetBSD: runenone.c,v 1.7 2001/01/26 13:42:11 tsutsui Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -51,6 +51,7 @@ __RCSID("$NetBSD: runenone.c,v 1.6 2001/01/22 04:42:40 itojun Exp $");
#include "rune.h"
#include <errno.h>
#include <stdlib.h>
+#include <string.h>
size_t _none_mbrtowc __P((struct _RuneLocale *, rune_t *, const char *, size_t,
void *));