aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/send_through/send_through.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/monniaux/send_through/send_through.h')
-rw-r--r--test/monniaux/send_through/send_through.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/monniaux/send_through/send_through.h b/test/monniaux/send_through/send_through.h
new file mode 100644
index 00000000..03714fec
--- /dev/null
+++ b/test/monniaux/send_through/send_through.h
@@ -0,0 +1,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);