* wcsmbs/Makefile: Add rules to build and run tst-wchar-h.

* wcsmbs/tst-wchar-h.c: New file.
This commit is contained in:
Ulrich Drepper 2005-07-24 20:03:14 +00:00
parent 76c98ee22b
commit c226340858
3 changed files with 13 additions and 1 deletions

View File

@ -1,6 +1,8 @@
2005-07-24 Ulrich Drepper <drepper@redhat.com>
* wcsmbs/bits/wchar2.h: Use __FILE not FILE.
* wcsmbs/Makefile: Add rules to build and run tst-wchar-h.
* wcsmbs/tst-wchar-h.c: New file.
2005-07-22 Ulrich Drepper <drepper@redhat.com>

View File

@ -40,7 +40,7 @@ routines := wcscat wcschr wcscmp wcscpy wcscspn wcsdup wcslen wcsncat \
wcsmbsload mbsrtowcs_l
tests := tst-wcstof wcsmbs-tst1 tst-wcsnlen tst-btowc tst-mbrtowc \
tst-wcrtomb tst-wcpncpy tst-mbsrtowcs
tst-wcrtomb tst-wcpncpy tst-mbsrtowcs tst-wchar-h
include ../Rules
@ -62,6 +62,7 @@ CFLAGS-wcstoull_l.c = $(strtox-CFLAGS)
CFLAGS-wcstod_l.c = $(strtox-CFLAGS)
CFLAGS-wcstold_l.c = $(strtox-CFLAGS)
CFLAGS-wcstof_l.c = $(strtox-CFLAGS)
CFLAGS-tst-wchar-h.c = -D_FORTIFY_SOURCE=2
tst-btowc-ENV = LOCPATH=$(common-objpfx)localedata
tst-mbrtowc-ENV = LOCPATH=$(common-objpfx)localedata

9
wcsmbs/tst-wchar-h.c Normal file
View File

@ -0,0 +1,9 @@
#include <stdlib.h>
#include <wchar.h>
int
main (void)
{
mbstate_t x;
return sizeof (x) - sizeof (mbstate_t);
}