git://git.qemu.org
/
qemu.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge remote-tracking branch 'remotes/afaerber/tags/maintainers-for-peter' into staging
[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