Don't reference removed files in Makefile
[python/dscho.git] / Mac / Compat / rmdir.c
blob2e406c280cc06f091345d8b4b03b27dad51dcc41
1 /* Rmdir for the Macintosh.
2 Public domain by Guido van Rossum, CWI, Amsterdam (July 1987).
3 Pathnames must be Macintosh paths, with colons as separators. */
5 #include "macdefs.h"
7 int
8 rmdir(path)
9 char *path;
11 IOParam pb;
13 pb.ioNamePtr= (StringPtr) Pstring(path);
14 pb.ioVRefNum= 0;
15 if (PBDelete((ParmBlkPtr)&pb, FALSE) != noErr) {
16 errno= EACCES;
17 return -1;
19 return 0;