comparison src/audio/sun/SDL_sunaudio.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
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>
27 #include <fcntl.h> 25 #include <fcntl.h>
28 #include <errno.h> 26 #include <errno.h>
29 #include <string.h>
30 #ifdef __NetBSD__ 27 #ifdef __NetBSD__
31 #include <sys/ioctl.h> 28 #include <sys/ioctl.h>
32 #include <sys/audioio.h> 29 #include <sys/audioio.h>
33 #endif 30 #endif
34 #ifdef __SVR4 31 #ifdef __SVR4
37 #include <sys/time.h> 34 #include <sys/time.h>
38 #include <sys/types.h> 35 #include <sys/types.h>
39 #endif 36 #endif
40 #include <unistd.h> 37 #include <unistd.h>
41 38
39 #include "SDL_stdlib.h"
40 #include "SDL_string.h"
42 #include "SDL_endian.h" 41 #include "SDL_endian.h"
43 #include "SDL_audio.h" 42 #include "SDL_audio.h"
44 #include "SDL_audiomem.h" 43 #include "SDL_audiomem.h"
45 #include "SDL_audiodev_c.h" 44 #include "SDL_audiodev_c.h"
46 #include "SDL_sunaudio.h" 45 #include "SDL_sunaudio.h"