comparison src/cdrom/aix/SDL_syscdrom.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
25 /* Functions for system-level CD-ROM audio control */ 25 /* Functions for system-level CD-ROM audio control */
26 26
27 #define DEBUG_CDROM 1 27 #define DEBUG_CDROM 1
28 28
29 #include <sys/types.h> 29 #include <sys/types.h>
30 #include <stdlib.h>
31 #include <sys/stat.h> 30 #include <sys/stat.h>
32 #include <fcntl.h> 31 #include <fcntl.h>
33 #include <stdio.h>
34 #include <string.h>
35 #include <errno.h> 32 #include <errno.h>
36 #include <unistd.h> 33 #include <unistd.h>
37 34
38 #include <sys/ioctl.h> 35 #include <sys/ioctl.h>
39 #include <sys/devinfo.h> 36 #include <sys/devinfo.h>
41 #include <sys/statfs.h> 38 #include <sys/statfs.h>
42 #include <sys/vmount.h> 39 #include <sys/vmount.h>
43 #include <fstab.h> 40 #include <fstab.h>
44 #include <sys/scdisk.h> 41 #include <sys/scdisk.h>
45 42
43 #include "SDL_stdlib.h"
44 #include "SDL_string.h"
46 #include "SDL_error.h" 45 #include "SDL_error.h"
47 #include "SDL_cdrom.h" 46 #include "SDL_cdrom.h"
48 #include "SDL_syscdrom.h" 47 #include "SDL_syscdrom.h"
49 48
50 /* The maximum number of CD-ROM drives we'll detect */ 49 /* The maximum number of CD-ROM drives we'll detect */