Niejednoznaczne przeciążenie wywołania abs (double)

Mam następujący kod C ++:

#include <math.h>
#include <cmath.h>      // per http://www.cplusplus.com/reference/clibrary/cmath/abs/

// snip ...

if ( (loan_balance < 0) && (abs(loan_balance) > loan_payment) ) {
    ...
}

imake wysadza w powietrze:

error: call of overloaded 'abs(double)' is ambiguous

również interesujące:

/usr/include/stdlib.h:785: note: candidates are: int abs(int)

Jak mogę określić, że kompilator musi wywołać abs () w cmath.h, które może obsługiwać zmiennoprzecinkowe?

Informacje o kompilatorze (nie jesteś pewien, czy to ma znaczenie):

[some_man@some_box ~/some_code]#  gcc -v
Using built-in specs.
Target: i386-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr    /share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=i386-redhat-linux
Thread model: posix
gcc version 4.1.2 20080704 (Red Hat 4.1.2-44)

questionAnswers(3)

yourAnswerToTheQuestion