xref: /qemu/stubs/is-daemonized.c (revision 40d6ee9450b966f56a7df9874939b05f33040c74)
1 #include "qemu/osdep.h"
2 #include "qemu-common.h"
3 
4 /* Win32 has its own inline stub */
5 #ifndef _WIN32
6 bool is_daemonized(void)
7 {
8     return false;
9 }
10 #endif
11