cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
Syscall - sys/syscall.h
Syscall - sys/syscall.h
Apr 18, 2014 at 12:25pm UTC
Alby94
(63)
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 UTC
Little Bobby Tables
(1079)
thats a posix library i believe, meaning you would have to typically be on linux or unix
Apr 18, 2014 at 12:45pm UTC
vFreeman
(35)
#if __linux
#include <sys/syscall.h>
#elif defined(_WIN32) || defined(_WIN64)
#include <windows.h>
#endif
Topic archived. No new replies allowed.