Update of /cvsroot/mplayer/main/libvo In directory mplayer:/var/tmp.root/cvs-serv25376/libvo Modified Files: vo_vesa.c Log Message: added missing #include <malloc.h> #include "config.h" moved as 1st #include since it defines HAVE_foo_h for later conditional inclusions Index: vo_vesa.c =================================================================== RCS file: /cvsroot/mplayer/main/libvo/vo_vesa.c,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- vo_vesa.c 9 Nov 2001 02:02:58 -0000 1.41 +++ vo_vesa.c 9 Nov 2001 02:17:02 -0000 1.42 @@ -15,19 +15,19 @@ note: triple buffering requires VBE 3.0 - need volunteers. - refresh rate support (need additional info from mplayer) */ +#include "config.h" + #include <stdio.h> +#ifdef HAVE_MALLOC_H +#include <malloc.h> +#endif #include <stdlib.h> #include <string.h> #include <stddef.h> #include <limits.h> -#include "config.h" #include "video_out.h" #include "video_out_internal.h" - -#ifdef HAVE_MALLOC_H -#include <malloc.h> -#endif #include "fastmemcpy.h" #include "sub.h"
participants (1)
-
pl