musl-tcc/src/internal/sh/__shcall.c

7 lines
98 B
C

#include <features.h>
hidden int __shcall(void *arg, int (*func)(void *))
{
return func(arg);
}