diff options
Diffstat (limited to 'Include/mymath.h')
| -rw-r--r-- | Include/mymath.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Include/mymath.h b/Include/mymath.h new file mode 100644 index 0000000000..b34b77e2b9 --- /dev/null +++ b/Include/mymath.h @@ -0,0 +1,16 @@ +/* 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 |
