- add section for BX_WITH_CARBON for macosx

This commit is contained in:
Bryce Denney 2001-09-26 00:11:23 +00:00
parent 61f6647397
commit 4ad1870fa3
1 changed files with 6 additions and 2 deletions

View File

@ -41,9 +41,14 @@ extern "C" {
# include <io.h>
#endif
#include <time.h>
#ifdef macintosh
#if BX_WITH_MACOS
# include <types.h>
# include <stat.h>
#elif BX_WITH_CARBON
# include <Carbon/Carbon.h>
# include <sys/types.h>
# include <sys/stat.h>
# include <sys/param.h> /* for MAXPATHLEN */
# include <utime.h>
#else
# ifndef WIN32
@ -56,7 +61,6 @@ extern "C" {
#include <string.h>
#include <fcntl.h>
#ifdef macintosh
# include "macutils.h"
# define SuperDrive "[fd:]"
#endif
}