Mercurial > sdl-ios-xcode
comparison src/video/maccommon/SDL_macmouse.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 |
---|---|
18 | 18 |
19 Sam Lantinga | 19 Sam Lantinga |
20 slouken@libsdl.org | 20 slouken@libsdl.org |
21 */ | 21 */ |
22 | 22 |
23 #include <stdlib.h> | |
24 #include <stdio.h> | |
25 #if defined(__APPLE__) && defined(__MACH__) | 23 #if defined(__APPLE__) && defined(__MACH__) |
26 #include <Carbon/Carbon.h> | 24 #include <Carbon/Carbon.h> |
27 #elif TARGET_API_MAC_CARBON && (UNIVERSAL_INTERFACES_VERSION > 0x0335) | 25 #elif TARGET_API_MAC_CARBON && (UNIVERSAL_INTERFACES_VERSION > 0x0335) |
28 #include <Carbon.h> | 26 #include <Carbon.h> |
29 #else | 27 #else |
33 /* Routines that are not supported by the Carbon API... */ | 31 /* Routines that are not supported by the Carbon API... */ |
34 #if !TARGET_API_MAC_CARBON | 32 #if !TARGET_API_MAC_CARBON |
35 #include <CursorDevices.h> | 33 #include <CursorDevices.h> |
36 #endif | 34 #endif |
37 | 35 |
36 #include "SDL_stdlib.h" | |
37 #include "SDL_string.h" | |
38 #include "SDL_error.h" | 38 #include "SDL_error.h" |
39 #include "SDL_mouse.h" | 39 #include "SDL_mouse.h" |
40 #include "SDL_macmouse_c.h" | 40 #include "SDL_macmouse_c.h" |
41 | 41 |
42 | 42 |