comparison src/cdrom/beos/SDL_syscdrom.cc @ 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
23 /* Functions for system-level CD-ROM audio control on BeOS 23 /* Functions for system-level CD-ROM audio control on BeOS
24 (not completely implemented yet) 24 (not completely implemented yet)
25 */ 25 */
26 26
27 #include <sys/types.h> 27 #include <sys/types.h>
28 #include <stdlib.h>
29 #include <sys/stat.h> 28 #include <sys/stat.h>
30 #include <stdio.h>
31 #include <string.h>
32 #include <unistd.h> 29 #include <unistd.h>
33 30
34 #include <scsi.h> 31 #include <scsi.h>
35 #include <Directory.h> 32 #include <Directory.h>
36 #include <Entry.h> 33 #include <Entry.h>
37 #include <Path.h> 34 #include <Path.h>
38 35
36 #include "SDL_stdlib.h"
37 #include "SDL_string.h"
39 #include "SDL_error.h" 38 #include "SDL_error.h"
40 #include "SDL_cdrom.h" 39 #include "SDL_cdrom.h"
41 extern "C" { 40 extern "C" {
42 #include "SDL_syscdrom.h" 41 #include "SDL_syscdrom.h"
43 } 42 }