diff options
author | June McEnroe <programble@gmail.com> | 2016-12-02 05:53:48 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2016-12-02 05:53:48 -0500 |
commit | f412fc9f104f57b317b9720028e518ef045d529e (patch) | |
tree | 6bd0c268b5c48d4b551831b94af10cf05977c1f4 | |
parent | Write newline (diff) | |
download | aoc-f412fc9f104f57b317b9720028e518ef045d529e.tar.gz aoc-f412fc9f104f57b317b9720028e518ef045d529e.zip |
Remove unused sys constants
Diffstat (limited to '')
-rw-r--r-- | sys.asm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys.asm b/sys.asm index a7d5295..8f03f5f 100644 --- a/sys.asm +++ b/sys.asm @@ -39,12 +39,8 @@ SYS_READ equ 0 SYS_WRITE equ 1 -SYS_GETPID equ 39 SYS_EXIT equ 60 -SYS_KILL equ 62 FD_STDIN equ 0 FD_STDOUT equ 1 FD_STDERR equ 2 - -SIG_ABRT equ 6 |