Changeset 46579c66 in mainline for test/print/print1/test.c
- Timestamp:
- 2006-03-16T17:17:41Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 79aeb43b
- Parents:
- 41fa6f2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/print/print1/test.c
r41fa6f2 r46579c66 31 31 void test(void) 32 32 { 33 __u64 u64const = 0x0123456789ABCDEFLL;34 33 printf(" Printf test \n"); 35 printf(" Q %Q %q \n",u64const, u64const); 34 printf(" Q %Q %q \n",0x1111111111111111ull, 0x2222222222222222ull); 35 printf(" Q,l %Q %l \n", 0x3333333333333333ull, 0x01234567); 36 printf(" l,Q %l %Q \n", 0x01234567, 0x4444444444444444ull); 36 37 printf(" L %L %l \n",0x01234567 ,0x01234567); 37 38 printf(" W %W %w \n",0x0123 ,0x0123);
Note:
See TracChangeset
for help on using the changeset viewer.