Rev 1054 | Rev 1196 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1054 | Rev 1069 | ||
---|---|---|---|
Line 35... | Line 35... | ||
35 | printf(" Q,l %Q %l \n", 0x3333333333333333ull, 0x01234567); |
35 | printf(" Q,l %Q %l \n", 0x3333333333333333ull, 0x01234567); |
36 | printf(" l,Q %l %Q \n", 0x01234567, 0x4444444444444444ull); |
36 | printf(" l,Q %l %Q \n", 0x01234567, 0x4444444444444444ull); |
37 | printf(" L %L %l \n",0x01234567 ,0x01234567); |
37 | printf(" L %L %l \n",0x01234567 ,0x01234567); |
38 | printf(" W %W %w \n",0x0123 ,0x0123); |
38 | printf(" W %W %w \n",0x0123 ,0x0123); |
39 | printf(" B %B %b \n",0x01 ,0x01); |
39 | printf(" B %B %b \n",0x01 ,0x01); |
- | 40 | printf(" Print to NULL '%s'\n",NULL); |
|
40 | return; |
41 | return; |
41 | } |
42 | } |