2016-01-29 20:49:52 +03:00
|
|
|
#include "qemu/osdep.h"
|
2014-05-27 16:07:10 +04:00
|
|
|
#include "qemu-common.h"
|
|
|
|
|
2014-06-10 14:03:23 +04:00
|
|
|
/* Win32 has its own inline stub */
|
|
|
|
#ifndef _WIN32
|
2014-05-27 16:07:10 +04:00
|
|
|
bool is_daemonized(void)
|
|
|
|
{
|
2014-06-10 14:03:23 +04:00
|
|
|
return false;
|
2014-05-27 16:07:10 +04:00
|
|
|
}
|
2014-06-10 14:03:23 +04:00
|
|
|
#endif
|