aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/send_through/send_through.h
blob: 03714fecccd396596ff66a6462c6dc875b4bd6b6 (plain)
1
2
3
4
5
6
typedef double op_int_double(int, double);
typedef float op_int_float(int, float);

double send_through_double(op_int_double f, int x, int y, double z);
float send_through_float(op_int_float f, int x, int y, float z);
void print_from_ccomp(double x);