math.c 207 B

123456789101112
  1. #include <math.h>
  2. /* Fix me */
  3. double sin(double x)
  4. {
  5. #warning sin function not supported for this platform
  6. }
  7. double cos(double x)
  8. {
  9. #warning cos function not supported for this platform
  10. }