diff options
author | 2006-09-17 16:48:04 +0000 | |
---|---|---|
committer | 2006-09-17 16:48:04 +0000 | |
commit | 2994e40d196cda916fa6a69c86a2fabc01087728 (patch) | |
tree | b78281078d04bcfaa4941e5d1da8f6065d90a692 | |
parent | 4.0-current. yes deraadt (diff) | |
download | wireguard-openbsd-2994e40d196cda916fa6a69c86a2fabc01087728.tar.xz wireguard-openbsd-2994e40d196cda916fa6a69c86a2fabc01087728.zip |
add lldiv prototype; ok deraadt@
-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 |