mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-21 08:50:27 +00:00
HV: Remove 'register' prefix for data type
- it is unnecessary. Signed-off-by: Yonghua Huang <yonghua.huang@intel.com>
This commit is contained in:
committed by
Xie, nanlin
parent
f74675ce21
commit
a27bfcefed
@@ -41,8 +41,8 @@ void *memcpy_s(void *d, size_t dmax, const void *s, size_t slen);
|
||||
int udiv64(uint64_t dividend, uint64_t divisor, struct udiv_result *res);
|
||||
int udiv32(uint32_t dividend, uint32_t divisor, struct udiv_result *res);
|
||||
int atoi(const char *str);
|
||||
long strtol(const char *nptr, char **endptr, register int base);
|
||||
uint64_t strtoul(const char *nptr, char **endptr, register int base);
|
||||
long strtol(const char *nptr, char **endptr, int base);
|
||||
uint64_t strtoul(const char *nptr, char **endptr, int base);
|
||||
|
||||
extern uint64_t tsc_hz;
|
||||
#define US_TO_TICKS(x) ((x) * tsc_hz / 1000000UL)
|
||||
|
Reference in New Issue
Block a user