blob: b34b77e2b97c5065b3a5bb0017e7b6bcd397986b [file] [log] [blame]
Guido van Rossum0acd4b61995-02-18 14:50:12 +00001/* On the 68K Mac, when using CFM (Code Fragment Manager),
2 <math.h> requires special treatment -- we need to surround it with
3 #pragma lib_export off / on...
4 This is because MathLib.o is a static library, and exporting its
5 symbols doesn't quite work...
6 XXX Not sure now... Seems to be something else going on as well... */
7
8#ifdef __CFM68K__
9#pragma lib_export off
10#endif
11
12#include <math.h>
13
14#ifdef __CFM68K__
15#pragma lib_export on
16#endif