[try Beta version]
Not logged in

 
Syscall - sys/syscall.h

Apr 18, 2014 at 12:25pm
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..
Apr 18, 2014 at 12:42pm
thats a posix library i believe, meaning you would have to typically be on linux or unix
Apr 18, 2014 at 12:45pm
#if __linux
#include <sys/syscall.h>
#elif defined(_WIN32) || defined(_WIN64)
#include <windows.h>
#endif
Topic archived. No new replies allowed.