Subversion Repositories HelenOS-historic

Rev

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

Rev 77 Rev 181
Line 35... Line 35...
35
#define INT16   2
35
#define INT16   2
36
#define INT32   4
36
#define INT32   4
37
#define INT64   8
37
#define INT64   8
38
 
38
 
39
static void print_str(const char *str);
39
static void print_str(const char *str);
40
static void print_fixed_hex(const __native num, const int width);
40
static void print_fixed_hex(const __u64 num, const int width);
41
static void print_number(const __native num, const unsigned int base);
41
static void print_number(const __native num, const unsigned int base);
42
 
42
 
43
extern void putchar(const char c);
43
extern void putchar(const char c);
44
extern void printf(const char *fmt, ...);
44
extern void printf(const char *fmt, ...);
45
 
45