ref: 7e737ab9f7d62562c927a6af15dfc8eb78ecaec8
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