summaryrefslogtreecommitdiffstats
path: root/osdep/mmap_anon.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 19:07:42 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 19:07:42 +0000
commitb2c4df0543c3de1725763511eca658a055209f36 (patch)
tree618dd9e22574f0928d6c6bf09d28cf7096955e75 /osdep/mmap_anon.c
parent4cb9cfc6eead9bb182159d20a425baaaf01d9927 (diff)
downloadmpv-b2c4df0543c3de1725763511eca658a055209f36.tar.bz2
mpv-b2c4df0543c3de1725763511eca658a055209f36.tar.xz
Move #ifdef directives around complete files into the build system.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21873 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep/mmap_anon.c')
-rw-r--r--osdep/mmap_anon.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/osdep/mmap_anon.c b/osdep/mmap_anon.c
index 89dcda8b88..cf90f2179a 100644
--- a/osdep/mmap_anon.c
+++ b/osdep/mmap_anon.c
@@ -3,7 +3,6 @@
* \brief Provide a compatible anonymous space mapping function
*/
#include "config.h"
-#ifdef HAVE_SYS_MMAN_H
#include <stdio.h>
#include <unistd.h>
@@ -63,5 +62,3 @@ void *mmap_anon(void *addr, size_t len, int prot, int flags, off_t offset)
return result;
}
-
-#endif /* HAVE_SYS_MMAN_H */