summaryrefslogtreecommitdiff
path: root/libio/tst_wprintf.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-06-17 19:22:43 +0000
committerUlrich Drepper <drepper@redhat.com>2000-06-17 19:22:43 +0000
commitce723583fc8c5241879dfb5c1d7f940ded72f283 (patch)
treeec364aea4e24b93088ac466f10edcf7dc63c383c /libio/tst_wprintf.c
parent9d54e98421ecc160fc92238746651bf70f1683e1 (diff)
Update.
* stdio-common/tiformat.c (sprint_ints): Add tests for I flag. * libio/tst_wprintf.c (main): Add test for I flag.
Diffstat (limited to 'libio/tst_wprintf.c')
-rw-r--r--libio/tst_wprintf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libio/tst_wprintf.c b/libio/tst_wprintf.c
index 0838441d2c..bf859f10fc 100644
--- a/libio/tst_wprintf.c
+++ b/libio/tst_wprintf.c
@@ -6,5 +6,6 @@ main (int argc, char *argv[])
{
fputws (L"Hello world!\n", stdout);
wprintf (L"This %s a %ls string: %d\n", "is", L"mixed", 42);
+ wprintf (L"%Iu\n", 0xfeedbeef);
return 0;
}