msvcrt/stdlib.h fix

Francois Gouget fgouget at free.fr
Tue Apr 24 15:30:41 CDT 2001


Changelog:

 * include/msvcrt/stdlib.h
   Don't use Windows types like LONGLONG in msvcrt headers

--
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
            "Lotto: A tax on people who are bad at math." -- unknown
          "Windows: Microsoft's tax on computer illiterates." -- WE7U
-------------- next part --------------
Index: include/msvcrt/stdlib.h
===================================================================
RCS file: /home/wine/wine/include/msvcrt/stdlib.h,v
retrieving revision 1.2
diff -u -r1.2 stdlib.h
--- include/msvcrt/stdlib.h	2001/04/23 18:20:55	1.2
+++ include/msvcrt/stdlib.h	2001/04/24 18:39:55
@@ -142,8 +142,8 @@
 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);


More information about the wine-patches mailing list