Projet_SETI_RISC-V/riscv-gnu-toolchain/qemu/stubs/is-daemonized.c

10 lines
130 B
C
Raw Normal View History

2023-03-06 14:48:14 +01:00
#include "qemu/osdep.h"
/* Win32 has its own inline stub */
#ifndef _WIN32
bool is_daemonized(void)
{
return false;
}
#endif