diff options
Diffstat (limited to 'libc/arch-x86/syscalls/execve.S')
-rw-r--r-- | libc/arch-x86/syscalls/execve.S | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/libc/arch-x86/syscalls/execve.S b/libc/arch-x86/syscalls/execve.S index 3028e8f..95523bc 100644 --- a/libc/arch-x86/syscalls/execve.S +++ b/libc/arch-x86/syscalls/execve.S @@ -1,12 +1,15 @@ -/* autogenerated by gensyscalls.py */ -#include <linux/err.h> -#include <machine/asm.h> -#include <asm/unistd.h> +/* Generated by gensyscalls.py. Do not edit. */ + +#include <private/bionic_asm.h> ENTRY(execve) pushl %ebx pushl %ecx pushl %edx + .cfi_def_cfa_offset 12 + .cfi_rel_offset ebx, 0 + .cfi_rel_offset ecx, 4 + .cfi_rel_offset edx, 8 mov 16(%esp), %ebx mov 20(%esp), %ecx mov 24(%esp), %edx |