------- Comment #17 from ubizjak at gmail dot com  2007-06-23 19:51 -------
(In reply to comment #15)

> and here is the incorrect output:

Here is the correct input:

--cut here--
#include <stdio.h>

int abs(int);
double fabs(double);

int main()
{
  printf("%i  %f  %i  %i\n", abs(1234.5678), fabs(1234.5678),
         abs((int)1234.5678), abs((int)(1234.5678)));

  return 0;
}
--cut here--

OK, have fun, I'll stop wasting electrons here...


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32448

Reply via email to