Subversion Repositories HelenOS-historic

Rev

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

Rev 68 Rev 77
Line 32... Line 32...
32
#include <arch/types.h>
32
#include <arch/types.h>
33
 
33
 
34
#define INT8    1
34
#define INT8    1
35
#define INT16   2
35
#define INT16   2
36
#define INT32   4
36
#define INT32   4
-
 
37
#define INT64   8
37
 
38
 
38
static void print_str(const char *str);
39
static void print_str(const char *str);
39
static void print_fixed_hex(const __native num, const int width);
40
static void print_fixed_hex(const __native num, const int width);
40
static void print_number(const __native num, const unsigned int base);
41
static void print_number(const __native num, const unsigned int base);
41
 
42