qemu-e2k/stubs/is-daemonized.c

11 lines
155 B
C

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