diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-03-02 09:31:46 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-03-02 09:31:46 +0000 |
commit | 7084d0cb982e1e3885b813b299d81115f54f41be (patch) | |
tree | 9ce95e2e1fc952289d5c9ff21f3712d7073a40b7 /sys/lib/libsa | |
parent | fce3c0341ef92d2df4bea15e052d18f385f6161c (diff) |
Add a strcmp() prototype, which will be needed shortly.
Diffstat (limited to 'sys/lib/libsa')
-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 34cb2de0573..efe7921eb85 100644 --- a/sys/lib/libsa/stand.h +++ b/sys/lib/libsa/stand.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stand.h,v 1.35 1998/07/29 00:38:36 mickey Exp $ */ +/* $OpenBSD: stand.h,v 1.36 2002/03/02 09:31:45 miod Exp $ */ /* $NetBSD: stand.h,v 1.18 1996/11/30 04:35:51 gwr Exp $ */ /*- @@ -157,6 +157,7 @@ int memcmp __P((const void *, const void*, size_t)); char *strncpy __P((char *, const char *, size_t)); char *strcpy __P((char *, const char *)); int strncmp __P((const char *, const char *, size_t)); +int strcmp __P((const char *, const char *)); size_t strlen __P((const char *)); long strtol __P((const char *, char **, int)); char *strchr __P((const char *, int)); |