summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-08-14 15:54:53 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-08-14 15:54:53 +0000
commit511729a3a206fc069626b39d6c08f1db4b56b0b0 (patch)
tree116d1aef40d0a418e1b3150abc2384b2fba20cd2 /libvo
parent20e0b5c83156993a57667436fd96a03272f0e551 (diff)
downloadmpv-511729a3a206fc069626b39d6c08f1db4b56b0b0.tar.bz2
mpv-511729a3a206fc069626b39d6c08f1db4b56b0b0.tar.xz
Use '#include <poll.h>' instead of '#include <sys/poll.h>'.
It is the standard location as defined by the Open Group. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27463 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_mpegpes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_mpegpes.c b/libvo/vo_mpegpes.c
index 902be94f27..7858256f20 100644
--- a/libvo/vo_mpegpes.c
+++ b/libvo/vo_mpegpes.c
@@ -26,7 +26,7 @@
#ifdef CONFIG_DVB
#ifndef CONFIG_DVB_HEAD
-#include <sys/poll.h>
+#include <poll.h>
#include <sys/ioctl.h>
#include <stdio.h>
@@ -41,7 +41,7 @@
#else
#define true 1
#define false 0
-#include <sys/poll.h>
+#include <poll.h>
#include <sys/ioctl.h>
#include <stdio.h>