ref: e8065938a7c02560e8ab8f14d6e3b60774c0ad08
dir: /src/libc/arch/i386/crt-posix.s/
.bss .globl _environ _environ: .long 0 .text .global start _start: movl %esp,%ebp movl (%ebp),%edi leal 8(%ebp),%esi leal 16(%ebp,%edi,8),%edx movl %edx,_environ call main movl %eax,%edi jmp exit