1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
2001-07-22  Bruno Haible  <haible@clisp.cons.org>

	* intl/libintl.h (ngettext, dngettext, dcngettext): Use both msgid1
	and msgid2 for printf format argument checking.
This commit is contained in:
Ulrich Drepper
2001-07-24 22:16:09 +00:00
parent 0db597422f
commit f369623d6d
5 changed files with 21 additions and 5 deletions

View File

@ -67,7 +67,10 @@ main (void)
if (getcontext (&mctx) != 0)
{
if (errno == ENOSYS)
exit (0);
{
puts ("context handling not supported");
exit (0);
}
printf ("%s: getcontext: %m\n", __FUNCTION__);
exit (1);