forked from Mirrors/freeswitch
16d6e9901c
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7502 d0543943-73ff-0310-b7d9-9358b9ac24b2
35 lines
805 B
Diff
35 lines
805 B
Diff
--- export/src/strlcpy.c 2007-08-31 00:02:46.000000000 +0200
|
|
+++ ../src/strlcpy.c 2007-08-31 00:03:08.000000000 +0200
|
|
@@ -17,19 +17,12 @@
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
-#if !defined(_KERNEL) && !defined(_STANDALONE)
|
|
-#if HAVE_NBTOOL_CONFIG_H
|
|
-#include "nbtool_config.h"
|
|
-#endif
|
|
+#include <config.h>
|
|
|
|
-#include <sys/cdefs.h>
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
|
__RCSID("$NetBSD: strlcpy.c,v 1.3 2007/06/04 18:19:27 christos Exp $");
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
-#ifdef _LIBC
|
|
-#include "namespace.h"
|
|
-#endif
|
|
#include <sys/types.h>
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
@@ -39,10 +32,6 @@
|
|
__weak_alias(strlcpy, _strlcpy)
|
|
# endif
|
|
#endif
|
|
-#else
|
|
-#include <lib/libkern/libkern.h>
|
|
-#endif /* !_KERNEL && !_STANDALONE */
|
|
-
|
|
|
|
#if !HAVE_STRLCPY
|
|
/*
|