From 1e4f1cf154d18d2bd13cd4524a8bbae6786efd02 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 13 Jun 2011 20:28:14 -0400 Subject: remove all .size and .type directives for functions from the asm these are useless and have caused problems for users trying to build with non-gnu tools like tcc's assembler. --- src/signal/i386/restore.s | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/signal/i386') diff --git a/src/signal/i386/restore.s b/src/signal/i386/restore.s index e0c4ab66..298ba9a5 100644 --- a/src/signal/i386/restore.s +++ b/src/signal/i386/restore.s @@ -1,15 +1,10 @@ .global __restore -.type __restore,%function __restore: popl %eax movl $119, %eax int $0x80 -.size __restore,.-__restore .global __restore_rt -.type __restore_rt,%function __restore_rt: movl $173, %eax int $0x80 -.size __restore_rt,.-__restore_rt - -- cgit v1.2.1