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
This commit is contained in:
Dimitry Andric 2016-03-23 19:17:12 +00:00
parent 9c4c0cc214
commit 4ec98362ae
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=297212

View file

@ -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 {