diff options
author | dim <dim@FreeBSD.org> | 2016-03-23 19:17:12 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2016-03-23 19:17:12 +0000 |
commit | e135c6f227c1e8b3a3ed96d1e8028573f677ddc1 (patch) | |
tree | 1e11aff3bc157edc0ba3970c4e5f82c999360e36 /include | |
parent | 60767387edb7a14d5764f87ee3784fd9c8f0133a (diff) | |
download | FreeBSD-src-e135c6f227c1e8b3a3ed96d1e8028573f677ddc1.zip FreeBSD-src-e135c6f227c1e8b3a3ed96d1e8028573f677ddc1.tar.gz |
For C++, expose long long types and functions (lldiv_t, llabs, lldiv,
etc) in stdlib.h. These will be needed for newer versions of libc++,
which uses them for defining overloaded versions of abs() and div().
MFC after: 1 week
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index d5506ff..8a645c0 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -125,7 +125,7 @@ size_t wcstombs(char * __restrict, const wchar_t * __restrict, size_t); * * (The only other extension made by C99 in thie header is _Exit().) */ -#if __ISO_C_VISIBLE >= 1999 +#if __ISO_C_VISIBLE >= 1999 || defined(__cplusplus) #ifdef __LONG_LONG_SUPPORTED /* LONGLONG */ typedef struct { |