diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-04-04 18:05:06 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-04-04 18:05:06 +0000 |
commit | c4d0b551c871741b2629095d3e0aae2e55ac51bd (patch) | |
tree | e65111330ad012bfe99ec2bdbe715a8fe1fa1a5a /include | |
parent | d754351ef53f06fab6f82d76db709f0d09a96679 (diff) |
gcc 2.x is dead
ok millert@
Diffstat (limited to 'include')
-rw-r--r-- | include/wchar.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/wchar.h b/include/wchar.h index 54e21bc4b47..270bd6c6f78 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wchar.h,v 1.28 2015/02/09 23:02:25 millert Exp $ */ +/* $OpenBSD: wchar.h,v 1.29 2015/04/04 18:05:05 guenther Exp $ */ /* $NetBSD: wchar.h,v 1.16 2003/03/07 07:11:35 tshiozak Exp $ */ /*- @@ -185,12 +185,9 @@ size_t wcsftime(wchar_t * __restrict, size_t, const wchar_t *__restrict, const struct tm *__restrict); #endif -#if (defined(__GNUC__) && __GNUC__ >= 2 && !defined(__STRICT_ANSI__)) || \ - __ISO_C_VISIBLE >= 1999 -/* LONGLONG */ +#if !defined(__STRICT_ANSI__) || __ISO_C_VISIBLE >= 1999 long long int wcstoll(const wchar_t * __restrict, wchar_t ** __restrict, int base); -/* LONGLONG */ unsigned long long int wcstoull(const wchar_t * __restrict, wchar_t ** __restrict, int base); #endif |