| Current Path : /usr/home/beeson/MathXpert/ |
| Current File : /usr/home/beeson/MathXpert/sincos.h |
#ifdef sincos #define saveit sincos #undef sincos // Ensure it's not defined #endif #define sincos foo #include <math.h> // Now include math.h safely #undef sincos // Restore the original state #ifdef saveit #define sincos saveit #endif