summaryrefslogtreecommitdiffstats
path: root/unrar_exec.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-17 00:11:33 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-17 00:11:33 +0000
commit92f52e811b6b556eeab3c7faeb20d61cacb47afb (patch)
tree2d346d6bfbebd7c3041a48ff9f8dfaf8f42ffcad /unrar_exec.c
parentabb3ce5a5b51a01b5ce0d8b69672c59f191d1cd5 (diff)
downloadmpv-92f52e811b6b556eeab3c7faeb20d61cacb47afb.tar.bz2
mpv-92f52e811b6b556eeab3c7faeb20d61cacb47afb.tar.xz
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
Diffstat (limited to 'unrar_exec.c')
-rw-r--r--unrar_exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unrar_exec.c b/unrar_exec.c
index 29a531fb61..de2b230e81 100644
--- a/unrar_exec.c
+++ b/unrar_exec.c
@@ -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>