meta: update rosetta support

This commit is contained in:
2026-05-30 10:09:55 +01:00
parent a20306ae64
commit 8c0a31e19b
11 changed files with 407 additions and 18 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
#include <stdarg.h>
#include <stdio.h>
static double another_function(int a, double b, int c)
static int another_function(int a, double b, int c)
{
printf("a=%d, b=%lf, c=%d\n", a, b, c);
return 1.2;
return 2;
}
static int test_function(int a, int b, int c, ...)