diff options
author | Tobias Weingartner <weingart@cvs.openbsd.org> | 1998-02-24 22:14:45 +0000 |
---|---|---|
committer | Tobias Weingartner <weingart@cvs.openbsd.org> | 1998-02-24 22:14:45 +0000 |
commit | 057c341a9b13c9cd328a6b943a2f0d4db6285cce (patch) | |
tree | 159378171d701fe866c272bb7cbc245808f5afa6 /sys/lib | |
parent | b9b3d8e0167a5944cbb2d240d112c940630f3fec (diff) |
Prototype strtol()
Diffstat (limited to 'sys/lib')
-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 c67bcd9b44f..5c35c9a4499 100644 --- a/sys/lib/libsa/stand.h +++ b/sys/lib/libsa/stand.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stand.h,v 1.30 1997/10/07 07:59:58 mickey Exp $ */ +/* $OpenBSD: stand.h,v 1.31 1998/02/24 22:14:44 weingart Exp $ */ /* $NetBSD: stand.h,v 1.18 1996/11/30 04:35:51 gwr Exp $ */ /*- @@ -153,6 +153,7 @@ char *strncpy __P((char *, const char *, size_t)); 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)); void *memset __P((void *, int, size_t)); void exec __P((char *, void *, int)); void exit __P((void)); |