Remove function call prints from interactive.

This commit is contained in:
Danila Fedorin 2018-08-11 22:42:36 -07:00
parent 3d0e4776fc
commit de0ad13785
1 changed files with 0 additions and 3 deletions

View File

@ -71,13 +71,11 @@ FUNCTION(xor) {
}
FUNCTION(atan) {
printf("atan called\n");
double* val = libab_unwrap_param(params, 0);
return create_double_value(ab, atan(*val), into);
}
FUNCTION(atan2) {
printf("atan2 called\n");
double* left = libab_unwrap_param(params, 0);
double* right = libab_unwrap_param(params, 1);
return create_double_value(ab, atan2(*left, *right), into);
@ -115,7 +113,6 @@ FUNCTION(print_unit) {
libab_result result = LIBAB_SUCCESS; \
double right; \
double left; \
printf(#name " called\n"); \
left = *((double*)libab_unwrap_param(params, 0)); \
right = *((double*)libab_unwrap_param(params, 1)); \
create_double_value(ab, expression, into); \