summaryrefslogtreecommitdiffstats
path: root/sys/lib/libkern/libkern.h
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1997-05-04 23:33:35 +0000
committermillert <millert@openbsd.org>1997-05-04 23:33:35 +0000
commit5d1f086cbc15a28abfb2e2ce6721afd76531f2fd (patch)
tree58285459651a2cce7fc667d20e5c6a6fece4242a /sys/lib/libkern/libkern.h
parentMake null_read() and null_write() consistent with their prototypes. (diff)
downloadwireguard-openbsd-5d1f086cbc15a28abfb2e2ce6721afd76531f2fd.tar.xz
wireguard-openbsd-5d1f086cbc15a28abfb2e2ce6721afd76531f2fd.zip
Alpha needs strchr.c
Fix up clean and depend targets in Makefile.inc so we can include Makefile.inc in cases where there is already a clean/depend target (based on a NetBSD Makefile.inc).
Diffstat (limited to 'sys/lib/libkern/libkern.h')
-rw-r--r--sys/lib/libkern/libkern.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libkern/libkern.h b/sys/lib/libkern/libkern.h
index e43f0e4fc3b..6e948cfd847 100644
--- a/sys/lib/libkern/libkern.h
+++ b/sys/lib/libkern/libkern.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: libkern.h,v 1.9 1997/03/30 22:05:10 mickey Exp $ */
+/* $OpenBSD: libkern.h,v 1.10 1997/05/04 23:33:38 millert Exp $ */
/* $NetBSD: libkern.h,v 1.7 1996/03/14 18:52:08 christos Exp $ */
/*-
@@ -121,13 +121,13 @@ int ffs __P((int));
int locc __P((int, char *, u_int));
u_long random __P((void));
void srandom __P((u_long));
-char *rindex __P((const char *, int));
int scanc __P((u_int, const u_char *, const u_char *, int));
int skpc __P((int, size_t, u_char *));
size_t strlen __P((const char *));
char *strcat __P((char *, const char *));
char *strcpy __P((char *, const char *));
char *strncpy __P((char *, const char *, size_t));
+char *strchr __P((const char *, int));
int strcmp __P((const char *, const char *));
int strncmp __P((const char *, const char *, size_t));
int strncasecmp __P((const char *, const char *, size_t));