1
mirror of https://github.com/mpv-player/mpv synced 2024-08-24 07:21:49 +02:00

Use correct #include for waitpid, fixes the warning:

unrar_exec.c:127: warning: implicit declaration of function 'waitpid'


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25427 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-12-17 00:11:33 +00:00
parent abb3ce5a5b
commit 92f52e811b

View File

@ -21,7 +21,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdlib.h>