Staging
v0.8.1
Revision e83e380930aaa7c258e1b31d65bff25bac1d0178 authored by Guido van Rossum on 17 March 1995, 16:01:35 UTC, committed by Guido van Rossum on 17 March 1995, 16:01:35 UTC
1 parent 8e6b1aa
Raw File
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