is-daemonized.c 130 B

123456789
  1. #include "qemu/osdep.h"
  2. /* Win32 has its own inline stub */
  3. #ifndef _WIN32
  4. bool is_daemonized(void)
  5. {
  6. return false;
  7. }
  8. #endif