qemu-e2k/stubs/runstate-check.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
135 B
C
Raw Normal View History

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