summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Mac/Python/macsetfiletype.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/Mac/Python/macsetfiletype.c b/Mac/Python/macsetfiletype.c
index 7ba7080..70647b9 100644
--- a/Mac/Python/macsetfiletype.c
+++ b/Mac/Python/macsetfiletype.c
@@ -4,8 +4,7 @@
*
*/
-#include <Files.h>
-#include <pascal.h>
+#include "macdefs.h"
int
setfiletype(name, creator, type)
@@ -15,7 +14,7 @@ long creator, type;
FInfo info;
unsigned char *pname;
- pname = c2pstr(name);
+ pname = (StringPtr) c2pstr(name);
if ( GetFInfo(pname, 0, &info) < 0 )
return -1;
info.fdType = type;