math.cpp 139 B

1234567891011121314
  1. #include <math.h>
  2. #include <assert.h>
  3. extern "C" {
  4. double pow(double x, double y)
  5. {
  6. (void) x;
  7. (void) y;
  8. assert(false);
  9. }
  10. }