summaryrefslogtreecommitdiffstats
path: root/osdep/mmap_anon.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-16 15:03:03 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-16 15:03:03 +0000
commit465f535c51f0b3c9050366fb4930c8a465a87f42 (patch)
tree7e0fb48fd0e8880aebd992260d2a7c47502f6bde /osdep/mmap_anon.c
parent3c514ea708749679623ae04fc8f7ade87e51aade (diff)
downloadmpv-465f535c51f0b3c9050366fb4930c8a465a87f42.tar.bz2
mpv-465f535c51f0b3c9050366fb4930c8a465a87f42.tar.xz
#include corresponding .h files in .c files.
This ensures that function declarations in both files always match. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30596 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep/mmap_anon.c')
-rw-r--r--osdep/mmap_anon.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/osdep/mmap_anon.c b/osdep/mmap_anon.c
index 727761cb6c..d5b3a3dd2f 100644
--- a/osdep/mmap_anon.c
+++ b/osdep/mmap_anon.c
@@ -27,6 +27,8 @@
#include <fcntl.h>
#include <sys/mman.h>
+#include "mmap_anon.h"
+
#if defined(MAP_ANON) && !defined(MAP_ANONYMOUS)
#define MAP_ANONYMOUS MAP_ANON
#endif