aboutsummaryrefslogtreecommitdiff
path: root/stubs/is-daemonized.c
blob: c0ee9171a72d78dc5ef5f16eb7baf40c9020a74b (plain)
1
2
3
4
5
6
7
8
9
#include "qemu-common.h"

/* Win32 has its own inline stub */
#ifndef _WIN32
bool is_daemonized(void)
{
    return false;
}
#endif