diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-06-23 21:02:28 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-06-23 21:02:28 +0000 |
commit | 328b557f67c3f94bcc1006d947de8ec51634f2d4 (patch) | |
tree | 7ea2e80a0c0c705577adf4622d8d949fb212194b /sys/lib | |
parent | fdd8df93e0b3b921dfe5d5849d7b130cdc140cd1 (diff) |
Remove strcat() and strcpy() prototypes since we no longer have those
functions in kernel-land. Noticed by Jim Rees; OK deraadt@
Diffstat (limited to 'sys/lib')
-rw-r--r-- | sys/lib/libkern/libkern.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/lib/libkern/libkern.h b/sys/lib/libkern/libkern.h index 6f0df688d5a..f154dc551db 100644 --- a/sys/lib/libkern/libkern.h +++ b/sys/lib/libkern/libkern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: libkern.h,v 1.18 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: libkern.h,v 1.19 2003/06/23 21:02:27 millert Exp $ */ /* $NetBSD: libkern.h,v 1.7 1996/03/14 18:52:08 christos Exp $ */ /*- @@ -160,8 +160,6 @@ void srandom(u_long); int scanc(u_int, const u_char *, const u_char *, int); int skpc(int, size_t, u_char *); size_t strlen(const char *); -char *strcat(char *, const char *); -char *strcpy(char *, const char *); char *strncpy(char *, const char *, size_t); size_t strlcpy(char *, const char *, size_t); size_t strlcat(char *, const char *, size_t); |