lfn
serial
ticket/834-toolchain-update
topic/msim-upgrade
topic/simplify-dev-export
|
Last change
on this file since a6f8899 was a6f8899, checked in by Josef Cejka <malyzelenyhnus@…>, 21 years ago |
|
Small improvements in print1 test and its source code format.
|
-
Property mode
set to
100644
|
|
File size:
314 bytes
|
| Line | |
|---|
| 1 |
|
|---|
| 2 | #include <print.h>
|
|---|
| 3 | #include <test.h>
|
|---|
| 4 |
|
|---|
| 5 | void test(void)
|
|---|
| 6 | {
|
|---|
| 7 | __u64 u64const = 0x0123456789ABCDEFLL;
|
|---|
| 8 | printf(" Printf test \n");
|
|---|
| 9 | printf(" Q %Q %q \n",u64const, u64const);
|
|---|
| 10 | printf(" L %L %l \n",0x01234567 ,0x01234567);
|
|---|
| 11 | printf(" W %W %w \n",0x0123 ,0x0123);
|
|---|
| 12 | printf(" B %B %b \n",0x01 ,0x01);
|
|---|
| 13 | return;
|
|---|
| 14 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.