Raw syscall interface for D.
- Linux-x86_64
- Linux-x86
- OSX-x86_64
- FreeBSD-x86_64
$ cd syscall-d
$ dub build --build=release
import syscalld : syscall, WRITE;
size_t write(size_t fd, string buf)
{
return syscall(WRITE, fd, cast(size_t) buf.ptr, cast(size_t) buf.length);
}
void main()
{
size_t stdout = 1;
write(stdout, "Hello\n");
}