···11+#include "sigreturn.h"
22+#include "../base.h"
33+#include "../errno.h"
44+55+long sys_sigreturn()
66+{
77+ // Apple's libc invokes sigreturn directly,
88+ // but Linux injects a rt_sigreturn() syscall on its own.
99+ // Hance we must ignore this call.
1010+ return 0;
1111+}
1212+