Mercurial > mplayer.hg
changeset 21489:969de5b130ae
fix include clash for mmap_anon on darwin ppc
author | nplourde |
---|---|
date | Tue, 05 Dec 2006 00:01:19 +0000 |
parents | fb2a55ef6401 |
children | 033d3244e4fd |
files | osdep/mmap_anon.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/osdep/mmap_anon.c Mon Dec 04 23:56:03 2006 +0000 +++ b/osdep/mmap_anon.c Tue Dec 05 00:01:19 2006 +0000 @@ -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