summary refs log tree commit diff stats
path: root/stubs/runstate-check.c
blob: c47abdf84b71af28d8fad626d89043c9449f4978 (plain) (blame)
1
2
3
4
5
6
7
#include "qemu/osdep.h"

#include "system/runstate.h"
bool runstate_check(RunState state)
{
    return state == RUN_STATE_PRELAUNCH;
}