X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-string-c%2B%2B.cc;h=df213939a9e781fae9235683d624c89644e34d72;hb=5e5009f839875220d5dec7abdf5cf53d919f4d42;hp=ee6580f0437d3402e194d9aa5f3ac7da715b5c58;hpb=e016983c7406fb8aa0c750053425ffb3cbaeec4a;p=gnulib.git diff --git a/tests/test-string-c++.cc b/tests/test-string-c++.cc index ee6580f04..df213939a 100644 --- a/tests/test-string-c++.cc +++ b/tests/test-string-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 @@ -68,6 +68,11 @@ SIGNATURE_CHECK (GNULIB_NAMESPACE::strchrnul, char *, (char const *, int)); SIGNATURE_CHECK (GNULIB_NAMESPACE::strdup, char *, (char const *)); #endif +#if GNULIB_TEST_STRNCAT +SIGNATURE_CHECK (GNULIB_NAMESPACE::strncat, char *, + (char *, const char *, size_t)); +#endif + #if GNULIB_TEST_STRNDUP SIGNATURE_CHECK (GNULIB_NAMESPACE::strndup, char *, (char const *, size_t)); #endif @@ -121,6 +126,10 @@ SIGNATURE_CHECK (GNULIB_NAMESPACE::mbspbrk, char *, SIGNATURE_CHECK (GNULIB_NAMESPACE::strerror, char *, (int)); #endif +#if GNULIB_TEST_STRERROR_R +SIGNATURE_CHECK (GNULIB_NAMESPACE::strerror_r, int, (int, char *, size_t)); +#endif + #if GNULIB_TEST_STRSIGNAL SIGNATURE_CHECK (GNULIB_NAMESPACE::strsignal, char *, (int)); #endif