aboutsummaryrefslogtreecommitdiffstats
path: root/test/cminor/mainmanyargs.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/cminor/mainmanyargs.c')
-rw-r--r--test/cminor/mainmanyargs.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/cminor/mainmanyargs.c b/test/cminor/mainmanyargs.c
deleted file mode 100644
index 36bcf762..00000000
--- a/test/cminor/mainmanyargs.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <stdio.h>
-
-void print_int(int n) { printf("%d\n", n); }
-void print_float(double n) { printf("%g\n", n); }
-
-extern void g(int,int,int,int,int,
- double,double,double,double,double);
-
-int main()
-{
- g(1,2,3,4,5, 0.1,0.2,0.3,0.4,0.5);
- return 0;
-}