summaryrefslogtreecommitdiffstats
path: root/sys/lib/libkern/strncmp.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1996-12-12 08:18:31 +0000
committerderaadt <deraadt@openbsd.org>1996-12-12 08:18:31 +0000
commit6bbc45802575aec8279750c74ab2fdd9cdb6366c (patch)
tree93b2b1c644953efd99e66a18513882dd9584cd75 /sys/lib/libkern/strncmp.c
parentsafe to{lower,upper} macros. (diff)
downloadwireguard-openbsd-6bbc45802575aec8279750c74ab2fdd9cdb6366c.tar.xz
wireguard-openbsd-6bbc45802575aec8279750c74ab2fdd9cdb6366c.zip
types.h for u_char
Diffstat (limited to 'sys/lib/libkern/strncmp.c')
-rw-r--r--sys/lib/libkern/strncmp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/lib/libkern/strncmp.c b/sys/lib/libkern/strncmp.c
index 60756ccc4d7..dee8b185e67 100644
--- a/sys/lib/libkern/strncmp.c
+++ b/sys/lib/libkern/strncmp.c
@@ -33,9 +33,10 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)strncmp.c 5.6 (Berkeley) 1/26/91";*/
-static char *rcsid = "$Id: strncmp.c,v 1.3 1996/12/08 14:25:49 niklas Exp $";
+static char *rcsid = "$Id: strncmp.c,v 1.4 1996/12/12 08:18:32 deraadt Exp $";
#endif /* LIBC_SCCS and not lint */
+#include <sys/types.h>
#ifndef _KERNEL
#include <string.h>
#else