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