PDA

View Full Version : How to use Kdevelop, plz help



smallvortex
March 30th, 2008, 02:51 AM
Hi everybody, I have started learn to use KDE C++, when I try to call "syscalls.h", It shows that "there is no file or such directory", How can I include it to my program?

xelapond
March 30th, 2008, 04:00 AM
Are you calling it with
#include "syscalls.h" or
#include <syscalls.h>

The first one includes a header in the current project directory, and the second one includes it from the compilers path.

Hope that helps!

Alex