diff options
Diffstat (limited to 'src/internal/sh/__shcall.c')
-rw-r--r-- | src/internal/sh/__shcall.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/internal/sh/__shcall.c b/src/internal/sh/__shcall.c new file mode 100644 index 0000000..4e073e8 --- /dev/null +++ b/src/internal/sh/__shcall.c @@ -0,0 +1,6 @@ +#include <features.h> + +hidden int __shcall(void *arg, int (*func)(void *)) +{ + return func(arg); +} |