How can I execute syscalls directly? I'm using OpenBSD right now, the Unix platform.
I want to be able to call syscalls without the 'wrapper', as an example:
instead of write(1, "hello!", 6) I'd like to be able to type syscall (4, 1, "hello!", 6).