*printf() may not return the number of characters written

Known bugs with 1.7
Post Reply
User avatar
dom
Well known member
Posts: 2072
Joined: Sun Jul 15, 2007 10:01 pm

*printf() may not return the number of characters written

Post by dom »

This only occurs if the mini* variety of *printf() is linked in, i.e. nowhere in the program are longs or doubles *printf()'d.

The problem lies with this file: http://z88dk.cvs.sourceforge.net/z88dk/ ... iew=markup which just returns 0.

No fix is available yet for this issue. A possible workaround is to include the following pragma in your code:

Code: Select all

#pragma output complexstdio
Post Reply