pty: Activate the signature wrapper of forkpty.
[gnulib.git] / tests / test-math-c++.cc
index 1821dd2..7653d62 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of <math.h> substitute in C++ mode.
-   Copyright (C) 2010-2012 Free Software Foundation, Inc.
+   Copyright (C) 2010-2013 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -194,6 +194,16 @@ SIGNATURE_CHECK (GNULIB_NAMESPACE::hypotl, long double,
                  (long double, long double));
 #endif
 
+#if GNULIB_TEST_ILOGBF
+SIGNATURE_CHECK (GNULIB_NAMESPACE::ilogbf, int, (float));
+#endif
+#if GNULIB_TEST_ILOGB
+SIGNATURE_CHECK (GNULIB_NAMESPACE::ilogb, int, (double));
+#endif
+#if GNULIB_TEST_ILOGBL
+SIGNATURE_CHECK (GNULIB_NAMESPACE::ilogbl, int, (long double));
+#endif
+
 //SIGNATURE_CHECK (GNULIB_NAMESPACE::j0, double, (double));
 
 //SIGNATURE_CHECK (GNULIB_NAMESPACE::j1, double, (double));
@@ -257,6 +267,9 @@ SIGNATURE_CHECK (GNULIB_NAMESPACE::logbf, float, (float));
 #if GNULIB_TEST_LOGB
 SIGNATURE_CHECK (GNULIB_NAMESPACE::logb, double, (double));
 #endif
+#if GNULIB_TEST_LOGBL
+SIGNATURE_CHECK (GNULIB_NAMESPACE::logbl, long double, (long double));
+#endif
 
 #if GNULIB_TEST_MODFF
 SIGNATURE_CHECK (GNULIB_NAMESPACE::modff, float, (float, float *));