xref: /openbmc/qemu/stubs/replay.c (revision 8eda206e)
1 #include "sysemu/replay.h"
2 #include <stdlib.h>
3 
4 ReplayMode replay_mode;
5 
6 int64_t replay_save_clock(unsigned int kind, int64_t clock)
7 {
8     abort();
9     return 0;
10 }
11 
12 int64_t replay_read_clock(unsigned int kind)
13 {
14     abort();
15     return 0;
16 }
17