diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-04 23:33:42 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-04 23:33:42 +0000 |
commit | 524fbdde37c1f9f4447e049b98046e014e00d518 (patch) | |
tree | dd779c44d511a45f1b4f3bf98d308642e7a1f2f9 /sys/lib/libkern/libkern.h | |
parent | 4cafb5d9b6178f157bb9bade0db016e07095cf91 (diff) |
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.h | 4 |
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)); |