qemu/stubs/is-daemonized.c

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

10 lines
130 B
C
Raw Normal View History

#include "qemu/osdep.h"
/* Win32 has its own inline stub */
#ifndef _WIN32
bool is_daemonized(void)
{
return false;
}
#endif