0
0
mirror of https://github.com/python/cpython.git synced 2024-11-24 00:38:00 +01:00

Changes by RMW for MPW

This commit is contained in:
Guido van Rossum 1994-05-06 15:54:52 +00:00
parent 87f223c6c7
commit 3ce7a1a9ea

View File

@ -53,8 +53,17 @@ main(argc, argv)
char **argv;
{
#ifdef macintosh
#ifndef MPW /* XXX RJW undefined in MPW */
wargs(&argc, &argv);
#endif
#ifndef MPW_3 /* XXX RJW doesn't seem to work with MPW C 3.0 */
extern int std_open_hook();
set_open_hook (std_open_hook);
#endif
#endif
argv0 = argv[0];
realmain(argc, argv);
}