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