]> git.proxmox.com Git - mirror_qemu.git/blob - stubs/is-daemonized.c
Merge remote-tracking branch 'remotes/kraxel/tags/ui-20180305-pull-request' into...
[mirror_qemu.git] / stubs / is-daemonized.c
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