[Mono-bugs] [Bug 446205] prototypes do not match body
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Tue Nov 18 15:51:58 EST 2008
https://bugzilla.novell.com/show_bug.cgi?id=446205
User joel.sherrill at oarcorp.com added comment
https://bugzilla.novell.com/show_bug.cgi?id=446205#c4
--- Comment #4 from Joel Sherrill <joel.sherrill at oarcorp.com> 2008-11-18 13:51:57 MST ---
We are using the newlib C library and the default stdint.h implementation.
It has this:
typedef signed long int32_t;
typedef unsigned long uint32_t;
So that would be what triggers it. Since newlib is used on cygwin, I checked
there and the /usr/include/stdint.h (not the same implementation as the default
newlib one) has this:
typedef long int32_t;
The Mingw/Msys install on that machine has yet another implementation
of stdint.h and it has this;
typedef int int32_t;
So int32_t is not always an int. I think Cygwin might fail also on using
eglib.
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list