From 1ac763ea169bc7821190954396a723fec04b14d9 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Wed, 6 Feb 2019 19:19:56 +0100 Subject: float aussi --- test/monniaux/send_through/send_through.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/monniaux/send_through/send_through.h') diff --git a/test/monniaux/send_through/send_through.h b/test/monniaux/send_through/send_through.h index 54b6c052..03714fec 100644 --- a/test/monniaux/send_through/send_through.h +++ b/test/monniaux/send_through/send_through.h @@ -1,4 +1,6 @@ typedef double op_int_double(int, double); +typedef float op_int_float(int, float); -double send_through(op_int_double f, int x, int y, double z); +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); -- cgit