Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
10 lines
130 B
C
10 lines
130 B
C
#include "qemu/osdep.h"
|
|
|
|
/* Win32 has its own inline stub */
|
|
#ifndef _WIN32
|
|
bool is_daemonized(void)
|
|
{
|
|
return false;
|
|
}
|
|
#endif
|