#include <fcntl.h>
-#include "macdefs.h"
-#include "dir.h"
-#include "stat.h"
+#include "::unixemu:macdefs.h"
+#include "::unixemu:dir.h"
+#include "::unixemu:stat.h"
#ifndef MAXPATHLEN
#define MAXPATHLEN 1024
/* Prototypes for Unix simulation on Mac */
-int access PROTO((char *path, int mode));
-int chdir PROTO((char *path));
+int access PROTO((const char *path, int mode));
+int chdir PROTO((const char *path));
char *getbootvol PROTO((void));
char *getwd PROTO((char *));
-int mkdir PROTO((char *path, int mode));
-DIR * opendir PROTO((char *));
+int mkdir PROTO((const char *path, int mode));
+DIR * opendir PROTO((char *));
void closedir PROTO((DIR *));
struct direct * readdir PROTO((DIR *));
-int rmdir PROTO((char *path));
-int stat PROTO((char *path, struct stat *buf));
+int rmdir PROTO((const char *path));
+int stat PROTO((const char *path, struct stat *buf));
int sync PROTO((void));
+int unlink PROTO((const char *));
static object *
mac_error()
{
- return err_errno(MacError);
+ return err_errno(MacError);
}
/* MAC generic methods */
return None;
}
+#ifdef MPW
+
static object *
mac_dup(self, args)
object *self;
return newopenfileobject(fp, "(fdopen)", mode, fclose);
}
+#endif /* MPW */
+
static object *
mac_getbootvol(self, args)
object *self;
{"access", mac_access},
{"chdir", mac_chdir},
{"close", mac_close},
+#ifdef MPW
{"dup", mac_dup},
{"fdopen", mac_fdopen},
+#endif
{"getbootvol", mac_getbootvol}, /* non-standard */
{"getcwd", mac_getcwd},
{"listdir", mac_listdir},