u64_t for human beings - the high and low parts are named hi and lo, lib/sysutil/profile.c updated accordingly

This commit is contained in:
Tomas Hruby
2009-08-13 15:47:49 +00:00
parent aae63b5410
commit 88f7b63019
2 changed files with 21 additions and 21 deletions

View File

@@ -69,7 +69,10 @@ typedef char i8_t; /* 8 bit signed type */
typedef short i16_t; /* 16 bit signed type */
typedef long i32_t; /* 32 bit signed type */
typedef struct { u32_t _[2]; } u64_t;
typedef struct {
u32_t lo;
u32_t hi;
} u64_t;
/* The following types are needed because MINIX uses K&R style function
* definitions (for maximum portability). When a short, such as dev_t, is