Mercurial > sdl-ios-xcode
comparison src/audio/paudio/SDL_paudio.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 |
---|---|
22 based on linux/SDL_dspaudio.c by Sam Lantinga | 22 based on linux/SDL_dspaudio.c by Sam Lantinga |
23 */ | 23 */ |
24 | 24 |
25 /* Allow access to a raw mixing buffer */ | 25 /* Allow access to a raw mixing buffer */ |
26 | 26 |
27 #include <stdlib.h> | |
28 #include <stdio.h> | |
29 #include <string.h> | |
30 #include <errno.h> | 27 #include <errno.h> |
31 #include <unistd.h> | 28 #include <unistd.h> |
32 #include <fcntl.h> | 29 #include <fcntl.h> |
33 #include <sys/time.h> | 30 #include <sys/time.h> |
34 #include <sys/ioctl.h> | 31 #include <sys/ioctl.h> |
35 #include <sys/stat.h> | 32 #include <sys/stat.h> |
36 | 33 |
34 #include "SDL_stdlib.h" | |
35 #include "SDL_string.h" | |
37 #include "SDL_audio.h" | 36 #include "SDL_audio.h" |
38 #include "SDL_error.h" | 37 #include "SDL_error.h" |
39 #include "SDL_audiomem.h" | 38 #include "SDL_audiomem.h" |
40 #include "SDL_audio_c.h" | 39 #include "SDL_audio_c.h" |
41 #include "SDL_timer.h" | 40 #include "SDL_timer.h" |