Don't use Windows types like LONGLONG in msvcrt headers.

oldstable
Francois Gouget 2001-04-24 23:16:39 +00:00 committed by Alexandre Julliard
parent 5e2eeb66ec
commit fceb19ff8e
1 changed files with 2 additions and 2 deletions

View File

@ -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);