Subversion Repositories HelenOS

Rev

Rev 187 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 187 Rev 228
Line 34... Line 34...
34
    printf(" Printf test \n");
34
    printf(" Printf test \n");
35
    printf(" Q  %Q  %q \n",u64const, u64const);
35
    printf(" Q  %Q  %q \n",u64const, u64const);
36
    printf(" L  %L  %l \n",0x01234567 ,0x01234567);  
36
    printf(" L  %L  %l \n",0x01234567 ,0x01234567);  
37
    printf(" W  %W  %w \n",0x0123 ,0x0123);  
37
    printf(" W  %W  %w \n",0x0123 ,0x0123);  
38
    printf(" B  %B  %b \n",0x01 ,0x01);
38
    printf(" B  %B  %b \n",0x01 ,0x01);
-
 
39
    printf(" F  %F  %f (123456789.987654321)\n",123456789.987654321,123456789.987654321);
-
 
40
    printf(" F  %F  %f (-123456789.987654321e-10)\n",-123456789.987654321e-10,-123456789.987654321e-10);
39
    return;
41
    return;
40
}
42
}