From 950d47fd6789c5c7d8aa4a0708659e713db17895 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 1 Oct 1994 14:24:17 +0000 Subject: Make it work under MPW too. --- Mac/Python/macsetfiletype.c | 5 ++--- 1 file 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 -#include +#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; -- cgit v0.12