Sign in
qemu
/
qemu
/
7b8be49d36fc0a48e41ede7ba7e046c1db2b89bc
/
.
/
stubs
/
is-daemonized.c
blob: d5cd1dc371343787b40f0a731940f54a7af49a6e [
file
] [
log
] [
blame
]
#include
"qemu/osdep.h"
#include
"qemu-common.h"
/* Win32 has its own inline stub */
#ifndef
_WIN32
bool
is_daemonized
(
void
)
{
return
false
;
}
#endif