summaryrefslogtreecommitdiffstats
path: root/lib/libc/string/strcat.c
diff options
context:
space:
mode:
authormickey <mickey@openbsd.org>2004-11-28 07:16:54 +0000
committermickey <mickey@openbsd.org>2004-11-28 07:16:54 +0000
commitb51344c84184bc916b6fbdb702d1af5acc8084e0 (patch)
tree58a2971750edd7be9a5f433be973f0bc67fcc258 /lib/libc/string/strcat.c
parentsupport for syncing into libkern; tedu@ millert@ ok (diff)
downloadwireguard-openbsd-b51344c84184bc916b6fbdb702d1af5acc8084e0.tar.xz
wireguard-openbsd-b51344c84184bc916b6fbdb702d1af5acc8084e0.zip
repair libkern support (again) and add rcsids
Diffstat (limited to 'lib/libc/string/strcat.c')
-rw-r--r--lib/libc/string/strcat.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/string/strcat.c b/lib/libc/string/strcat.c
index 885822bae3e..4f9734ab9e3 100644
--- a/lib/libc/string/strcat.c
+++ b/lib/libc/string/strcat.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: strcat.c,v 1.7 2004/11/28 07:16:54 mickey Exp $ */
+
/*
* Copyright (c) 1988 Regents of the University of California.
* All rights reserved.
@@ -28,10 +30,10 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: strcat.c,v 1.6 2003/07/24 01:15:42 deraadt Exp $";
+static char *rcsid = "$OpenBSD: strcat.c,v 1.7 2004/11/28 07:16:54 mickey Exp $";
#endif /* LIBC_SCCS and not lint */
-#ifndef _KERNEL
+#if !defined(_KERNEL) && !defined(_STANDALONE)
#include <string.h>
#else
#include <lib/libkern/libkern.h>