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