You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qemu/stubs/is-daemonized.c

10 lines
130 B
C

#include "qemu/osdep.h"
/* Win32 has its own inline stub */
#ifndef _WIN32
bool is_daemonized(void)
{
return false;
}
#endif