On 13/08/09 10:04 PM, "Ingo Macherius" <[email protected]> wrote:
> while ((n = (int)g_ascii_strtoll(sz, &sz, 10)) != 0) {
Howdy,
You are correct. Cygwin truly Is out of date. To support this we likely
should check to see if this function is supported, and if necessary fall
back to something that does work.
On that note, if you wish to try and get a cygwin release done you may wish
to replace g_ascii_strtoll with strtoll .
I'm not sure if strtoll is on cygwin (It probably is) so the lien would be:
while ((n = (int)strtoll(sz, &sz, 10)) != 0) {
_______________________________________________
Bug-gnubg mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-gnubg