From fceb19ff8ea971fdcc82cb032d38c76fc38541ed Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 24 Apr 2001 23:16:39 +0000 Subject: [PATCH] Don't use Windows types like LONGLONG in msvcrt headers. --- include/msvcrt/stdlib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/msvcrt/stdlib.h b/include/msvcrt/stdlib.h index 1e28149df1f..bc0d43e3acc 100644 --- a/include/msvcrt/stdlib.h +++ b/include/msvcrt/stdlib.h @@ -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);