initial commit
[azan.git] / syscalls.s
blobe73cd0940f80b841d0acab77f7f93761b761feaa
1 ; See LICENSE file for copyright and license details.
3 %ifndef SYSCALLS_S
4 %define SYSCALLS_S
6 %ifdef Linux
7 %define SYS_exit 60
8 %define SYS_write 1
9 %define SYS_gettimeofday 96
10 %elif OpenBSD
11 %define SYS_exit 1
12 %define SYS_write 4
13 %define SYS_gettimeofday 67
14 %endif
16 %endif ;SYSCALLS_S