summaryrefslogtreecommitdiffstats
path: root/osdep/mmap_anon.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-07-07 21:44:37 +0200
committerwm4 <wm4@nowhere>2013-07-07 21:44:37 +0200
commit659a314a19c12f5efeab46caca7a306c3330d85c (patch)
tree4cbd8af54d255655f3d8420a3d30ca2990b5b09c /osdep/mmap_anon.h
parent74b6d8f306530910d9d2e25dd2f48afb99e7e3eb (diff)
downloadmpv-659a314a19c12f5efeab46caca7a306c3330d85c.tar.bz2
mpv-659a314a19c12f5efeab46caca7a306c3330d85c.tar.xz
osdep: remove unused mmap compatibility hacks
Not sure how this worked. Only af_export.c and tvi_v4l2.c were using mmap, but they didn't include osdep/mmap.h or mmap_anon.h. In any case, we trust that the target system is sufficiently POSIX compliant if mmap is actually defined (as checked by configure).
Diffstat (limited to 'osdep/mmap_anon.h')
-rw-r--r--osdep/mmap_anon.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/osdep/mmap_anon.h b/osdep/mmap_anon.h
deleted file mode 100644
index 577f685838..0000000000
--- a/osdep/mmap_anon.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * This file is part of MPlayer.
- *
- * MPlayer is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * MPlayer is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with MPlayer; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifndef MPLAYER_MMAP_ANON_H
-#define MPLAYER_MMAP_ANON_H
-
-#include <sys/types.h>
-
-void *mmap_anon(void *, size_t, int, int, off_t);
-
-#endif /* MPLAYER_MMAP_ANON_H */