mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00
7 lines
115 B
C
7 lines
115 B
C
#include "qemu-common.h"
|
|
#include "qemu/timer.h"
|
|
|
|
int64_t cpu_get_clock(void)
|
|
{
|
|
return get_clock_realtime();
|
|
}
|