define and use internal macros for hidden visibility, weak refs
[musl] / src / internal / sh / __shcall.c
1 #include "libc.h"
2
3 hidden int __shcall(void *arg, int (*func)(void *))
4 {
5         return func(arg);
6 }