Browse Source

vlc_spawn: use unistd.h to get pid_t

It should be in both headers, but with the Windows SDK it's only possible
to have it inside unistd.h.
pull/141/head
Steve Lhomme 4 years ago
parent
commit
f59a9f183d
  1. 2
      include/vlc_spawn.h

2
include/vlc_spawn.h

@ -21,7 +21,7 @@
#ifndef VLC_SPAWN_H
#define VLC_SPAWN_H 1
#include <sys/types.h>
#include <unistd.h>
/**
* \defgroup spawn Process management

Loading…
Cancel
Save