aboutsummaryrefslogtreecommitdiffstats
path: root/src/u_write.S
diff options
context:
space:
mode:
authorJozanLeClerc <JozanLeClerc@noemail.net>2020-11-18 15:13:02 +0000
committerJozanLeClerc <JozanLeClerc@noemail.net>2020-11-18 15:13:02 +0000
commit9bc8ca088ab64fea2f815e1aa1971bdde23ef0d1 (patch)
tree5918dbfcabdbfca4daa25919da5224e30536a414 /src/u_write.S
parentThis is the beginning (diff)
downloadbsdsetsid-9bc8ca088ab64fea2f815e1aa1971bdde23ef0d1.tar.gz
bsdsetsid-9bc8ca088ab64fea2f815e1aa1971bdde23ef0d1.tar.bz2
bsdsetsid-9bc8ca088ab64fea2f815e1aa1971bdde23ef0d1.tar.xz
bsdsetsid-9bc8ca088ab64fea2f815e1aa1971bdde23ef0d1.tar.zst
bsdsetsid-9bc8ca088ab64fea2f815e1aa1971bdde23ef0d1.zip
In progress
FossilOrigin-Name: ff7fff8d77d6179426bd8ca6c7585423605896e3
Diffstat (limited to 'src/u_write.S')
-rw-r--r--src/u_write.S14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/u_write.S b/src/u_write.S
deleted file mode 100644
index efd7b9c..0000000
--- a/src/u_write.S
+++ /dev/null
@@ -1,14 +0,0 @@
-.text
-.globl u_write
-
-u_write:
- movq $0x4, %rax
- syscall
- movq %rax, %rcx
- jc u_err
- movq %rcx, %rax
- retq
-
-u_err:
- movq $0xffffffffffffffff, %rax
- retq