Mercurial > sdl-ios-xcode
comparison src/video/x11/SDL_x11events.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 |
---|---|
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 | 24 |
25 #include <stdio.h> | |
26 #include <stdlib.h> | |
27 #include <string.h> | |
28 #include <setjmp.h> | 25 #include <setjmp.h> |
29 #include <X11/Xlib.h> | 26 #include <X11/Xlib.h> |
30 #include <X11/Xutil.h> | 27 #include <X11/Xutil.h> |
31 #include <X11/keysym.h> | 28 #include <X11/keysym.h> |
32 #ifdef __SVR4 | 29 #ifdef __SVR4 |
35 #include <sys/types.h> | 32 #include <sys/types.h> |
36 #include <sys/time.h> | 33 #include <sys/time.h> |
37 #include <unistd.h> | 34 #include <unistd.h> |
38 | 35 |
39 #include "SDL.h" | 36 #include "SDL.h" |
37 #include "SDL_string.h" | |
40 #include "SDL_syswm.h" | 38 #include "SDL_syswm.h" |
41 #include "SDL_sysevents.h" | 39 #include "SDL_sysevents.h" |
42 #include "SDL_sysvideo.h" | 40 #include "SDL_sysvideo.h" |
43 #include "SDL_events_c.h" | 41 #include "SDL_events_c.h" |
44 #include "SDL_x11video.h" | 42 #include "SDL_x11video.h" |