summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authornplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-05 00:01:19 +0000
committernplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-05 00:01:19 +0000
commite8b20d1abe0614e8305b8cf653f58ff77a0e049d (patch)
treee28667187173e657964046ea3d20002d80c56d31 /osdep
parent56acf06a21ac50c2f4c5068b5c1c70a5f7be4be4 (diff)
downloadmpv-e8b20d1abe0614e8305b8cf653f58ff77a0e049d.tar.bz2
mpv-e8b20d1abe0614e8305b8cf653f58ff77a0e049d.tar.xz
fix include clash for mmap_anon on darwin ppc
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21505 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep')
-rw-r--r--osdep/mmap_anon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/mmap_anon.c b/osdep/mmap_anon.c
index 8bd7f308c7..89dcda8b88 100644
--- a/osdep/mmap_anon.c
+++ b/osdep/mmap_anon.c
@@ -5,10 +5,10 @@
#include "config.h"
#ifdef HAVE_SYS_MMAN_H
-#include <sys/mman.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
+#include <sys/mman.h>
#if defined(MAP_ANON) && !defined(MAP_ANONYMOUS)
#define MAP_ANONYMOUS MAP_ANON