Staging
v0.5.1
https://github.com/python/cpython
Revision 0e1337437c725ba62098a2b887445ee648a4bb61 authored by Jack Jansen on 14 August 1995, 13:39:16 UTC, committed by Jack Jansen on 14 August 1995, 13:39:16 UTC
1 parent 4518577
Raw File
Tip revision: 0e1337437c725ba62098a2b887445ee648a4bb61 authored by Jack Jansen on 14 August 1995, 13:39:16 UTC
Documented PromptGetFile and optional prompt to GetDirectory.
Tip revision: 0e13374
mymath.h
/* On the 68K Mac, when using CFM (Code Fragment Manager),
   <math.h> requires special treatment -- we need to surround it with
   #pragma lib_export off / on...
   This is because MathLib.o is a static library, and exporting its
   symbols doesn't quite work...
   XXX Not sure now...  Seems to be something else going on as well... */

#ifdef SYMANTEC__CFM68K__
#pragma lib_export off
#endif

#include <math.h>

#ifdef SYMANTEC__CFM68K__
#pragma lib_export on
#endif
back to top