2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
6 #include <aros/debug.h>
13 Reason for this test is that formatted printing with %f
14 had crashed on x86_64.
19 int retval
= RETURN_OK
;
25 sprintf(buffer
, "%6.3f %6.3f", xf
, xd
);
27 if (strcmp(buffer
, " 3.140 6.280"))
29 bug("created string is: %s\n", buffer
);
30 retval
= RETURN_ERROR
;