comparison src/joystick/beos/SDL_bejoystick.cc @ 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 /* This is the system specific header for the SDL joystick API */ 23 /* This is the system specific header for the SDL joystick API */
24 24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28
29 #include <be/support/String.h> 25 #include <be/support/String.h>
30 #include <be/device/Joystick.h> 26 #include <be/device/Joystick.h>
31 27
32 extern "C" { 28 extern "C" {
33 29
30 #include "SDL_stdlib.h"
31 #include "SDL_string.h"
34 #include "SDL_error.h" 32 #include "SDL_error.h"
35 #include "SDL_joystick.h" 33 #include "SDL_joystick.h"
36 #include "SDL_sysjoystick.h" 34 #include "SDL_sysjoystick.h"
37 #include "SDL_joystick_c.h" 35 #include "SDL_joystick_c.h"
38 36