From 6c70a940b48c98d5be4bdc13a400a763e46eb5e6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 5 Jul 2009 18:30:04 -0400 Subject: drop missing {INLINE,INTERNAL}_SYSCALL fallback logic Ports missing INLINE_SYSCALL() support need to get fixed, so drop the cruft keeping them alive since it no longer works with the unification. Signed-off-by: Mike Frysinger --- libc/sysdeps/linux/common/_exit.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'libc/sysdeps/linux/common/_exit.c') diff --git a/libc/sysdeps/linux/common/_exit.c b/libc/sysdeps/linux/common/_exit.c index 518a6d2e8..a8b3ffcb9 100644 --- a/libc/sysdeps/linux/common/_exit.c +++ b/libc/sysdeps/linux/common/_exit.c @@ -15,12 +15,6 @@ /* libc_hidden_proto(_exit) */ -#ifndef INLINE_SYSCALL -#define INLINE_SYSCALL(name, nr, args...) __syscall_exit (args) -#define __NR___syscall_exit __NR_exit -static __inline__ _syscall1(void, __syscall_exit, int, status) -#endif - void attribute_noreturn _exit(int status) { /* The loop is added only to keep gcc happy. */ -- cgit v1.2.3