I have the following two files in assembly:
# file.s .globl _start _start: mov $10, %edi mov $SYS_EXIT, %eax syscall
# utils.