Subversion Repositories HelenOS-historic

Rev

Rev 182 | Rev 187 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  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. }
  15.