diff options
author | Bruno Haible <bruno@clisp.org> | 2012-03-14 00:02:12 +0100 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2012-03-14 00:02:12 +0100 |
commit | 0cb00e5318a340c402d35e185b890ef528f4e9db (patch) | |
tree | a4e12716ba74ffd6376480956eae9fb08e45bccf /lib/math.in.h | |
parent | 843f36dd9708aec052ed2410232b57048201ba61 (diff) | |
download | gnulib-0cb00e5318a340c402d35e185b890ef528f4e9db.tar.gz |
remainderl: Avoid compilation error on AIX >= 5.2.
* lib/math.in.h (remainderl): Undefine macro from the system header.
Diffstat (limited to 'lib/math.in.h')
-rw-r--r-- | lib/math.in.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/math.in.h b/lib/math.in.h index 77b325399e..b530044494 100644 --- a/lib/math.in.h +++ b/lib/math.in.h @@ -1506,6 +1506,7 @@ _GL_FUNCDECL_RPL (remainderl, long double, (long double x, long double y)); _GL_CXXALIAS_RPL (remainderl, long double, (long double x, long double y)); # else # if !@HAVE_DECL_REMAINDERL@ +# undef remainderl _GL_FUNCDECL_SYS (remainderl, long double, (long double x, long double y)); # endif _GL_CXXALIAS_SYS (remainderl, long double, (long double x, long double y)); |