/* -*-comment-start: "//";comment-end:""-*- * GNU Mes --- Maxwell Equations of Software * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of GNU Mes. * * GNU Mes is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * GNU Mes is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GNU Mes. If not, see . */ #ifndef __MES_LINUX_X86_SYSCALL_H #define __MES_LINUX_X86_SYSCALL_H 1 // libc-mini // #define SYS_exit 0x01 // #define SYS_write 0x04 // libc #define SYS_fork 0x02 #define SYS_read 0x03 #define SYS_open 0x05 #define SYS_waitpid 0x07 #define SYS_wait4 0x72 #define SYS_execve 0x0b #define SYS_chmod 0x0f #define SYS_access 0x21 #define SYS_brk 0x2d #define SYS_ioctl 0x36 #define SYS_fsync 0x76 // libc+tcc #define SYS_close 0x06 #define SYS_lseek 0x13 #define SYS_unlink 0x0a #define SYS_rmdir 0x28 #define SYS_stat 0x6a #define SYS_getcwd 0xb7 #endif // __MES_LINUX_X86_SYSCALL_H