Mercurial > sdl-ios-xcode
comparison src/audio/dma/SDL_dmaaudio.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 | d02b552e5304 |
comparison
equal
deleted
inserted
replaced
1337:c687f06c7473 | 1338:604d73db6802 |
---|---|
20 slouken@libsdl.org | 20 slouken@libsdl.org |
21 */ | 21 */ |
22 | 22 |
23 /* Allow access to a raw mixing buffer */ | 23 /* Allow access to a raw mixing buffer */ |
24 | 24 |
25 #include <stdlib.h> | |
26 #include <stdio.h> | 25 #include <stdio.h> |
27 #include <string.h> | |
28 #include <errno.h> | 26 #include <errno.h> |
29 #include <unistd.h> | 27 #include <unistd.h> |
30 #include <fcntl.h> | 28 #include <fcntl.h> |
31 #include <signal.h> | 29 #include <signal.h> |
32 #include <sys/types.h> | 30 #include <sys/types.h> |
44 | 42 |
45 #ifndef MAP_FAILED | 43 #ifndef MAP_FAILED |
46 #define MAP_FAILED ((Uint8 *)-1) | 44 #define MAP_FAILED ((Uint8 *)-1) |
47 #endif | 45 #endif |
48 | 46 |
47 #include "SDL_stdlib.h" | |
48 #include "SDL_string.h" | |
49 #include "SDL_audio.h" | 49 #include "SDL_audio.h" |
50 #include "SDL_error.h" | 50 #include "SDL_error.h" |
51 #include "SDL_audiomem.h" | 51 #include "SDL_audiomem.h" |
52 #include "SDL_audio_c.h" | 52 #include "SDL_audio_c.h" |
53 #include "SDL_timer.h" | 53 #include "SDL_timer.h" |