diff options
Diffstat (limited to 'libc/arch-x86/syscalls/epoll_wait.S')
-rw-r--r-- | libc/arch-x86/syscalls/epoll_wait.S | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libc/arch-x86/syscalls/epoll_wait.S b/libc/arch-x86/syscalls/epoll_wait.S index 3d81a14..e2d61c0 100644 --- a/libc/arch-x86/syscalls/epoll_wait.S +++ b/libc/arch-x86/syscalls/epoll_wait.S @@ -1,12 +1,8 @@ /* autogenerated by gensyscalls.py */ +#include <machine/asm.h> #include <sys/linux-syscalls.h> - .text - .type epoll_wait, @function - .globl epoll_wait - .align 4 - -epoll_wait: +ENTRY(epoll_wait) pushl %ebx pushl %ecx pushl %edx @@ -30,3 +26,4 @@ epoll_wait: popl %ecx popl %ebx ret +END(epoll_wait) |