Revision 4e56e89d6c81589cc47cf5811f570c67889bd18a authored by Richard Henderson on 31 July 2024, 06:21:21 UTC, committed by Richard Henderson on 31 July 2024, 06:21:21 UTC
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
1 parent 9f887c3
Raw File
is-daemonized.c
#include "qemu/osdep.h"

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