blob: 6037109e2df6fcbf34bb7fc99ab3b4ed95f5e01b [file] [log] [blame] [edit]
#include <math.h>
extern "C" {
int int_sqrt(int x) {
return sqrt(x);
}
}