Syscall - sys/syscall.h

Where can i find this library? The compiler reports me: "Not such file or directory"... I want to call the syscall function included in this library...

EDIT: I use windows..
thats a posix library i believe, meaning you would have to typically be on linux or unix
#if __linux
#include <sys/syscall.h>
#elif defined(_WIN32) || defined(_WIN64)
#include <windows.h>
#endif
Topic archived. No new replies allowed.