summaryrefslogtreecommitdiff
path: root/libavformat/unix.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-21 05:46:34 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-08-21 05:51:41 +0200
commitbe03912a7805bb40ae022b444b1dc75460bb3eea (patch)
treee9ae7f415237c2895cceabeea2a1414501d02177 /libavformat/unix.c
parent97e165cdae9be6c4255cf004b2785f5c7c23ab3a (diff)
avformat/unix: reshuffle #includes
This should fix openbsd while hopefully also working on solaris & android Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/unix.c')
-rw-r--r--libavformat/unix.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/unix.c b/libavformat/unix.c
index 25af4101a1..0e61318fbd 100644
--- a/libavformat/unix.c
+++ b/libavformat/unix.c
@@ -26,13 +26,11 @@
*
*/
-#include <sys/socket.h>
-#include <sys/un.h>
-
#include "libavutil/avstring.h"
#include "libavutil/opt.h"
#include "os_support.h"
#include "network.h"
+#include <sys/un.h>
#include "url.h"
typedef struct UnixContext {