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