#ifndef __ASSEMBLY__ #define __ASSEMBLY__ #endif #include #include .text ENTRY(_start) popl %ecx /* pop argc */ call main /* main() */ movl %eax, %ebx /* ax contains exit_status */ movl $(SYS_exit), %eax /* exit(exit_status) */ int $0x80