move sh port's __shcall internal function from arch/sh/src to src tree

This commit is contained in:
Rich Felker
2016-01-22 03:50:08 +00:00
parent 230bfe1a7d
commit 007907a93c

View File

@ -0,0 +1,5 @@
__attribute__((__visibility__("hidden")))
int __shcall(void *arg, int (*func)(void *))
{
return func(arg);
}