comparison src/video/vgl/SDL_vglvideo.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
23 /* libvga based SDL video driver implementation. 23 /* libvga based SDL video driver implementation.
24 */ 24 */
25 25
26 #include <err.h> 26 #include <err.h>
27 #include <osreldate.h> 27 #include <osreldate.h>
28 #include <stdlib.h>
29 #include <stdio.h>
30 #include <unistd.h> 28 #include <unistd.h>
31 #include <sys/stat.h> 29 #include <sys/stat.h>
32 30
33 #include <sys/fbio.h> 31 #include <sys/fbio.h>
34 #include <sys/consio.h> 32 #include <sys/consio.h>
35 #include <sys/kbio.h> 33 #include <sys/kbio.h>
36 #include <vgl.h> 34 #include <vgl.h>
37 35
38 #include "SDL.h" 36 #include "SDL.h"
37 #include "SDL_stdlib.h"
38 #include "SDL_string.h"
39 #include "SDL_error.h" 39 #include "SDL_error.h"
40 #include "SDL_video.h" 40 #include "SDL_video.h"
41 #include "SDL_mouse.h" 41 #include "SDL_mouse.h"
42 #include "SDL_sysvideo.h" 42 #include "SDL_sysvideo.h"
43 #include "SDL_pixels_c.h" 43 #include "SDL_pixels_c.h"