mirror of https://github.com/F-Stack/f-stack.git
Fix bug: undefined refrence to `fueword`.
This commit is contained in:
parent
a1fd9364a9
commit
20a9422e03
|
@ -317,6 +317,13 @@ fubyte(volatile const void *base)
|
|||
return (*(volatile const uint8_t *)base);
|
||||
}
|
||||
|
||||
int
|
||||
fueword(volatile const void *base, long *val)
|
||||
{
|
||||
*val = (*(volatile const long *)base);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
timekeep_push_vdso(void)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue