diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-29 00:38:37 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-29 00:38:37 +0000 |
commit | 4861e5f3eec331b376e51fcf483df1011836a77f (patch) | |
tree | b296edf00673589e27cfe1cecc485fbcb3eee101 /sys | |
parent | b5f7d5d98c364322a0101dcba37dfe64d1294100 (diff) |
add strchr proto
Diffstat (limited to 'sys')
-rw-r--r-- | sys/lib/libsa/stand.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h index 80253f77f65..34cb2de0573 100644 --- a/sys/lib/libsa/stand.h +++ b/sys/lib/libsa/stand.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stand.h,v 1.34 1998/07/13 04:02:25 mickey Exp $ */ +/* $OpenBSD: stand.h,v 1.35 1998/07/29 00:38:36 mickey Exp $ */ /* $NetBSD: stand.h,v 1.18 1996/11/30 04:35:51 gwr Exp $ */ /*- @@ -159,6 +159,7 @@ char *strcpy __P((char *, const char *)); int strncmp __P((const char *, const char *, size_t)); size_t strlen __P((const char *)); long strtol __P((const char *, char **, int)); +char *strchr __P((const char *, int)); void *memset __P((void *, int, size_t)); void exec __P((char *, void *, int)); void exit __P((void)); |