diff options
Diffstat (limited to 'stubs/is-daemonized.c')
-rw-r--r-- | stubs/is-daemonized.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/stubs/is-daemonized.c b/stubs/is-daemonized.c index 16ce7c7324..c0ee9171a7 100644 --- a/stubs/is-daemonized.c +++ b/stubs/is-daemonized.c @@ -1,7 +1,9 @@ #include "qemu-common.h" -#include "sysemu/os-posix.h" +/* Win32 has its own inline stub */ +#ifndef _WIN32 bool is_daemonized(void) { - return true; + return false; } +#endif |