diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2006-09-17 16:48:05 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2006-09-17 16:48:05 +0000 |
commit | fd3ae7122314cd6838c99fa737e488a60f5fcb99 (patch) | |
tree | dac6dd64d9198095a914595447a88a701c5a5a00 /include/stdlib.h | |
parent | 02aa5cc26c39e7854f6f83784ccf6a6b10ecba1a (diff) |
add lldiv prototype; ok deraadt@
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 3440665e105..9124a884d0e 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdlib.h,v 1.38 2006/03/31 00:41:21 deraadt Exp $ */ +/* $OpenBSD: stdlib.h,v 1.39 2006/09/17 16:48:04 djm Exp $ */ /* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */ /*- @@ -194,6 +194,8 @@ long long atoll(const char *); long long llabs(long long); +lldiv_t + lldiv(long long, long long); long long strtoll(const char *, char **, int); unsigned long long |