diff options
Diffstat (limited to '')
-rw-r--r-- | x86_64/false.s | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x86_64/false.s b/x86_64/false.s index 03652b5..d026162 100644 --- a/x86_64/false.s +++ b/x86_64/false.s @@ -1,7 +1,8 @@ +/* See LICENSE file for copyright and license details. */ + .text .global _start _start: mov $60,%rax /* 60 is exit(2) */ mov $1,%rdi /* return code 1 */ syscall - |