X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-stdlib-c%2B%2B.cc;h=9010c1c7258f789e509d2ac8d64b754eed00c86d;hb=18c7880d06e42284d765ef2cb7be4019fdcd9281;hp=3874d2767f7b0ff00c47218b2c3b87f2a6023eda;hpb=e016983c7406fb8aa0c750053425ffb3cbaeec4a;p=gnulib.git diff --git a/tests/test-stdlib-c++.cc b/tests/test-stdlib-c++.cc index 3874d2767..9010c1c72 100644 --- a/tests/test-stdlib-c++.cc +++ b/tests/test-stdlib-c++.cc @@ -1,5 +1,5 @@ /* Test of substitute in C++ mode. - Copyright (C) 2010 Free Software Foundation, Inc. + Copyright (C) 2010-2011 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 @@ -24,6 +24,10 @@ #include "signature.h" +#if GNULIB_TEST__EXIT +SIGNATURE_CHECK (GNULIB_NAMESPACE::_Exit, void, (int)); +#endif + //SIGNATURE_CHECK (GNULIB_NAMESPACE::atexit, int, (void (*) (void))); #if GNULIB_TEST_ATOLL @@ -56,6 +60,11 @@ SIGNATURE_CHECK (GNULIB_NAMESPACE::grantpt, int, (int)); SIGNATURE_CHECK (GNULIB_NAMESPACE::malloc, void *, (size_t)); #endif +#if GNULIB_TEST_MBTOWC +SIGNATURE_CHECK (GNULIB_NAMESPACE::mbtowc, int, + (wchar_t *, const char *, size_t)); +#endif + #if GNULIB_TEST_MKDTEMP SIGNATURE_CHECK (GNULIB_NAMESPACE::mkdtemp, char *, (char *)); #endif @@ -143,6 +152,10 @@ SIGNATURE_CHECK (GNULIB_NAMESPACE::unlockpt, int, (int)); SIGNATURE_CHECK (GNULIB_NAMESPACE::unsetenv, int, (const char *)); #endif +#if GNULIB_TEST_WCTOMB +SIGNATURE_CHECK (GNULIB_NAMESPACE::wctomb, int, (char *, wchar_t)); +#endif + int main ()