Subversion Repositories HelenOS

Rev

Rev 4377 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4377 Rev 4692
Line 44... Line 44...
44
typedef unsigned short uint16_t;
44
typedef unsigned short uint16_t;
45
typedef unsigned long uint32_t;
45
typedef unsigned long uint32_t;
46
typedef unsigned long long uint64_t;
46
typedef unsigned long long uint64_t;
47
 
47
 
48
typedef uint32_t size_t;
48
typedef uint32_t size_t;
49
typedef uint32_t count_t;
-
 
50
typedef uint32_t index_t;
-
 
51
 
49
 
52
typedef uint32_t uintptr_t;
50
typedef uint32_t uintptr_t;
53
typedef uint32_t pfn_t;
51
typedef uint32_t pfn_t;
54
 
52
 
55
typedef uint32_t ipl_t;
53
typedef uint32_t ipl_t;
Line 60... Line 58...
60
typedef struct {
58
typedef struct {
61
} fncptr_t;
59
} fncptr_t;
62
 
60
 
63
#define PRIp "x"    /**< Format for uintptr_t. */
61
#define PRIp "x"    /**< Format for uintptr_t. */
64
#define PRIs "u"    /**< Format for size_t. */
62
#define PRIs "u"    /**< Format for size_t. */
65
#define PRIc "u"    /**< Format for count_t. */
-
 
66
#define PRIi "u"    /**< Format for index_t. */
-
 
67
 
63
 
68
#define PRId8 "d"   /**< Format for int8_t. */
64
#define PRId8 "d"   /**< Format for int8_t. */
69
#define PRId16 "d"  /**< Format for int16_t. */
65
#define PRId16 "d"  /**< Format for int16_t. */
70
#define PRId32 "ld" /**< Format for int32_t. */
66
#define PRId32 "ld" /**< Format for int32_t. */
71
#define PRId64 "lld"    /**< Format for int64_t. */
67
#define PRId64 "lld"    /**< Format for int64_t. */