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