xref: /openbmc/qemu/stubs/runstate-check.c (revision 103db49a106d1f015a16432eb73cc4046792fbad)
1 #include "sysemu/sysemu.h"
2 
3 bool runstate_check(RunState state)
4 {
5     return state == RUN_STATE_PRELAUNCH;
6 }
7