mirror of https://github.com/fltk/fltk
fix MSVC includes
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8131 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
98e9042a53
commit
70be49de58
|
@ -37,7 +37,11 @@
|
|||
\todo typedef's fl_intptr_t and fl_uintptr_t should be documented.
|
||||
*/
|
||||
#ifdef _WIN64
|
||||
#ifdef __GNUC__
|
||||
#include <stdint.h>
|
||||
#else
|
||||
#include <stddef.h> // M$VC
|
||||
#endif
|
||||
typedef intptr_t fl_intptr_t;
|
||||
typedef uintptr_t fl_uintptr_t;
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue