comparison src/video/x11/SDL_x11yuv.c @ 1338:604d73db6802

Removed uses of stdlib.h and string.h
author Sam Lantinga <slouken@libsdl.org>
date Tue, 07 Feb 2006 09:29:18 +0000
parents 3692456e7b0f
children c71e05b4dc2e
comparison
equal deleted inserted replaced
1337:c687f06c7473 1338:604d73db6802
22 22
23 /* This is the XFree86 Xv extension implementation of YUV video overlays */ 23 /* This is the XFree86 Xv extension implementation of YUV video overlays */
24 24
25 #ifdef XFREE86_XV 25 #ifdef XFREE86_XV
26 26
27 #include <stdlib.h>
28 #include <string.h>
29 #include <X11/Xlib.h> 27 #include <X11/Xlib.h>
30 #ifndef NO_SHARED_MEMORY 28 #ifndef NO_SHARED_MEMORY
31 #include <sys/ipc.h> 29 #include <sys/ipc.h>
32 #include <sys/shm.h> 30 #include <sys/shm.h>
33 #include <X11/extensions/XShm.h> 31 #include <X11/extensions/XShm.h>
34 #endif 32 #endif
35 #include <Xext/extensions/Xvlib.h> 33 #include <Xext/extensions/Xvlib.h>
36 34
35 #include "SDL_stdlib.h"
36 #include "SDL_string.h"
37 #include "SDL_error.h" 37 #include "SDL_error.h"
38 #include "SDL_video.h" 38 #include "SDL_video.h"
39 #include "SDL_x11yuv_c.h" 39 #include "SDL_x11yuv_c.h"
40 #include "SDL_yuvfuncs.h" 40 #include "SDL_yuvfuncs.h"
41 41