forked from lattera/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wcsmbs/Makefile: Add rules to build and run tst-wchar-h.
* wcsmbs/tst-wchar-h.c: New file.
- Loading branch information
Ulrich Drepper
committed
Jul 24, 2005
1 parent
76c98ee
commit c226340
Showing
3 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
2005-07-24 Ulrich Drepper <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#include <stdlib.h> | ||
#include <wchar.h> | ||
|
||
int | ||
main (void) | ||
{ | ||
mbstate_t x; | ||
return sizeof (x) - sizeof (mbstate_t); | ||
} |