Module Name: src
Committed By: kamil
Date: Fri Jan 5 17:52:06 UTC 2018
Modified Files:
src/lib/libc/citrus: citrus_lc_ctype.c
Log Message:
Include namespace.h in citrus/citrus_lc_ctype.c
The NetBSD Standard C Library uses internally some of its functions with
a mangled symbol name, usually "_symbol". The internal functions shall not
use the global (public) symbols.
This change eliminates usage of the global name of the following symbol:
- strlcpy -> _strlcpy
Sponsored by <The NetBSD Foundation>
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/lib/libc/citrus/citrus_lc_ctype.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/citrus/citrus_lc_ctype.c
diff -u src/lib/libc/citrus/citrus_lc_ctype.c:1.15 src/lib/libc/citrus/citrus_lc_ctype.c:1.16
--- src/lib/libc/citrus/citrus_lc_ctype.c:1.15 Fri Sep 13 13:13:32 2013
+++ src/lib/libc/citrus/citrus_lc_ctype.c Fri Jan 5 17:52:06 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: citrus_lc_ctype.c,v 1.15 2013/09/13 13:13:32 joerg Exp $ */
+/* $NetBSD: citrus_lc_ctype.c,v 1.16 2018/01/05 17:52:06 kamil Exp $ */
/*-
* Copyright (c)2008 Citrus Project,
@@ -28,9 +28,10 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: citrus_lc_ctype.c,v 1.15 2013/09/13 13:13:32 joerg Exp $");
+__RCSID("$NetBSD: citrus_lc_ctype.c,v 1.16 2018/01/05 17:52:06 kamil Exp $");
#endif /* LIBC_SCCS and not lint */
+#include "namespace.h"
#include "reentrant.h"
#include <sys/types.h>
#include <sys/ctype_bits.h>