Mercurial > sdl-ios-xcode
comparison src/audio/disk/SDL_diskaudio.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 |
---|---|
23 (icculus@linuxgames.com) | 23 (icculus@linuxgames.com) |
24 */ | 24 */ |
25 | 25 |
26 /* Output raw audio data to a file. */ | 26 /* Output raw audio data to a file. */ |
27 | 27 |
28 #include <stdlib.h> | |
29 #include <stdio.h> | 28 #include <stdio.h> |
30 #include <string.h> | |
31 #include <errno.h> | 29 #include <errno.h> |
32 #include <unistd.h> | 30 #include <unistd.h> |
33 #include <sys/stat.h> | 31 #include <sys/stat.h> |
34 #include <sys/types.h> | 32 #include <sys/types.h> |
35 #include <sys/stat.h> | 33 #include <sys/stat.h> |
36 #include <fcntl.h> | 34 #include <fcntl.h> |
37 | 35 |
38 | 36 |
37 #include "SDL_stdlib.h" | |
38 #include "SDL_string.h" | |
39 #include "SDL_audio.h" | 39 #include "SDL_audio.h" |
40 #include "SDL_error.h" | 40 #include "SDL_error.h" |
41 #include "SDL_audiomem.h" | 41 #include "SDL_audiomem.h" |
42 #include "SDL_audio_c.h" | 42 #include "SDL_audio_c.h" |
43 #include "SDL_timer.h" | 43 #include "SDL_timer.h" |