comparison libswscale/swscale.c @ 21712:5ff16d925594

Remove useless include (not needed now that libswscale uses libavutil)
author lucabe
date Fri, 22 Dec 2006 11:22:49 +0000
parents befebdb3ebaa
children bb3212f8b1fe
comparison
equal deleted inserted replaced
21711:b204aa35f7d0 21712:5ff16d925594
59 #include <math.h> 59 #include <math.h>
60 #include <stdio.h> 60 #include <stdio.h>
61 #include <unistd.h> 61 #include <unistd.h>
62 #include "config.h" 62 #include "config.h"
63 #include <assert.h> 63 #include <assert.h>
64 #ifdef HAVE_MALLOC_H
65 #include <malloc.h>
66 #else
67 #include <stdlib.h>
68 #endif
69 #ifdef HAVE_SYS_MMAN_H 64 #ifdef HAVE_SYS_MMAN_H
70 #include <sys/mman.h> 65 #include <sys/mman.h>
71 #if defined(MAP_ANON) && !defined(MAP_ANONYMOUS) 66 #if defined(MAP_ANON) && !defined(MAP_ANONYMOUS)
72 #define MAP_ANONYMOUS MAP_ANON 67 #define MAP_ANONYMOUS MAP_ANON
73 #endif 68 #endif