Mercurial > sdl-ios-xcode
comparison src/video/svga/SDL_svgaevents.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 |
---|---|
19 Sam Lantinga | 19 Sam Lantinga |
20 slouken@libsdl.org | 20 slouken@libsdl.org |
21 */ | 21 */ |
22 | 22 |
23 /* Handle the event stream, converting X11 events into SDL events */ | 23 /* Handle the event stream, converting X11 events into SDL events */ |
24 | |
25 #include <stdio.h> | |
26 #include <stdlib.h> | |
27 | 24 |
28 #include <vga.h> | 25 #include <vga.h> |
29 #include <vgamouse.h> | 26 #include <vgamouse.h> |
30 #include <vgakeyboard.h> | 27 #include <vgakeyboard.h> |
31 #if defined(linux) | 28 #if defined(linux) |
36 #else | 33 #else |
37 #error You must choose your operating system here | 34 #error You must choose your operating system here |
38 #endif | 35 #endif |
39 | 36 |
40 #include "SDL.h" | 37 #include "SDL.h" |
38 #include "SDL_stdlib.h" | |
39 #include "SDL_string.h" | |
41 #include "SDL_sysevents.h" | 40 #include "SDL_sysevents.h" |
42 #include "SDL_events_c.h" | 41 #include "SDL_events_c.h" |
43 #include "SDL_svgavideo.h" | 42 #include "SDL_svgavideo.h" |
44 #include "SDL_svgaevents_c.h" | 43 #include "SDL_svgaevents_c.h" |
45 | 44 |