xref: /qemu/stubs/runstate-check.c (revision a3434a2d56aee3018f4a0f55c7e0f0cda11f3d9e)
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