aboutsummaryrefslogtreecommitdiffstats
path: root/x86_64/true.s
diff options
context:
space:
mode:
Diffstat (limited to 'x86_64/true.s')
-rw-r--r--x86_64/true.s3
1 files changed, 2 insertions, 1 deletions
diff --git a/x86_64/true.s b/x86_64/true.s
index 860575b..f8f8945 100644
--- a/x86_64/true.s
+++ b/x86_64/true.s
@@ -1,7 +1,8 @@
+/* See LICENSE file for copyright and license details. */
+
.text
.global _start
_start:
mov $60,%rax /* 60 is exit(2) */
xor %rdi,%rdi /* return code 0 */
syscall
-