summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/strncmp.c
diff options
context:
space:
mode:
authormickey <>2004-11-28 07:16:54 +0000
committermickey <>2004-11-28 07:16:54 +0000
commit400dc0ede1161c72451b91080bb9b92c97ec449e (patch)
tree7341377c0ab7c6f301fccf1564b95690968413fc /src/lib/libc/string/strncmp.c
parent541933b43e7adf4fc5c7e119a699dd1380faf4cd (diff)
downloadopenbsd-400dc0ede1161c72451b91080bb9b92c97ec449e.tar.gz
openbsd-400dc0ede1161c72451b91080bb9b92c97ec449e.tar.bz2
openbsd-400dc0ede1161c72451b91080bb9b92c97ec449e.zip
repair libkern support (again) and add rcsids
Diffstat (limited to 'src/lib/libc/string/strncmp.c')
-rw-r--r--src/lib/libc/string/strncmp.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/libc/string/strncmp.c b/src/lib/libc/string/strncmp.c
index 82420e215e..ddab42dc75 100644
--- a/src/lib/libc/string/strncmp.c
+++ b/src/lib/libc/string/strncmp.c
@@ -1,3 +1,5 @@
1/* $OpenBSD: strncmp.c,v 1.6 2004/11/28 07:16:54 mickey Exp $ */
2
1/* 3/*
2 * Copyright (c) 1989 The Regents of the University of California. 4 * Copyright (c) 1989 The Regents of the University of California.
3 * All rights reserved. 5 * All rights reserved.
@@ -28,10 +30,10 @@
28 */ 30 */
29 31
30#if defined(LIBC_SCCS) && !defined(lint) 32#if defined(LIBC_SCCS) && !defined(lint)
31static char *rcsid = "$OpenBSD: strncmp.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $"; 33static char *rcsid = "$OpenBSD: strncmp.c,v 1.6 2004/11/28 07:16:54 mickey Exp $";
32#endif /* LIBC_SCCS and not lint */ 34#endif /* LIBC_SCCS and not lint */
33 35
34#ifndef _KERNEL 36#if !defined(_KERNEL) && !defined(_STANDALONE)
35#include <string.h> 37#include <string.h>
36#else 38#else
37#include <lib/libkern/libkern.h> 39#include <lib/libkern/libkern.h>