Reported through MacPorts.
* gettext-runtime/m4/intdiv0.m4 (gt_INTDIV0): Avoid shadowing the global 'nan()'
function.
-# intdiv0.m4 serial 8 (gettext-0.21.1)
+# intdiv0.m4 serial 9 (gettext-0.21.1)
dnl Copyright (C) 2002, 2007-2008, 2010-2020 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
int x = 1;
int y = 0;
int z;
-int nan;
+int inan;
int main ()
{
#endif
z = x / y;
- nan = y / y;
+ inan = y / y;
exit (2);
}
]])],