Staging
v0.5.1
https://github.com/python/cpython
Revision d39f5f64538edd6c690fe635926063fb7cac853b authored by cvs2svn on 10 April 1995, 12:32:31 UTC, committed by cvs2svn on 10 April 1995, 12:32:31 UTC
1 parent decd2df
Raw File
Tip revision: d39f5f64538edd6c690fe635926063fb7cac853b authored by cvs2svn on 10 April 1995, 12:32:31 UTC
This commit was manufactured by cvs2svn to create tag 'release12'.
Tip revision: d39f5f6
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 __CFM68K__
#pragma lib_export off
#endif

#include <math.h>

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