Don't use Windows types like LONGLONG in msvcrt headers.
This commit is contained in:
parent
5e2eeb66ec
commit
fceb19ff8e
|
@ -142,8 +142,8 @@ double MSVCRT(atof)(const char*);
|
|||
int MSVCRT(atoi)(const char*);
|
||||
long MSVCRT(atol)(const char*);
|
||||
#ifdef __i386__
|
||||
LONGLONG MSVCRT(div)(int,int);
|
||||
ULONGLONG MSVCRT(ldiv)(long,long);
|
||||
long long MSVCRT(div)(int,int);
|
||||
unsigned long long MSVCRT(ldiv)(long,long);
|
||||
#else
|
||||
MSVCRT(div_t) MSVCRT(div)(int,int);
|
||||
MSVCRT(ldiv_t) MSVCRT(ldiv)(long,long);
|
||||
|
|
Loading…
Reference in New Issue