Added guesstabsize() for the mac

This commit is contained in:
Guido van Rossum 1992-03-27 17:31:35 +00:00
parent 719f5fa86a
commit 7ebb23c637
1 changed files with 10 additions and 0 deletions

View File

@ -143,6 +143,16 @@ fatal(msg)
exit(1);
}
#ifdef macintosh
/* ARGSUSED */
int
guesstabsize(path)
char *path;
{
return 4;
}
#endif
/* XXX TO DO:
- check for duplicate definitions of names (instead of fatal err)
*/