diff options
author | dscho <dscho> | 2003-02-20 13:23:07 +0000 |
---|---|---|
committer | dscho <dscho> | 2003-02-20 13:23:07 +0000 |
commit | 98b9663e29ebc5a23db392335aef707cf2464487 (patch) | |
tree | aebce1f2844d38988f672d2e5679a147719c37cb /examples/example.c | |
parent | cbf75f79c82c53035d3d8fbf363079d8bc0700a5 (diff) | |
download | libtdevnc-98b9663e29ebc5a23db392335aef707cf2464487.tar.gz libtdevnc-98b9663e29ebc5a23db392335aef707cf2464487.zip |
the correct way to include rfb.h is now "#include <rfb/rfb.h>"
Diffstat (limited to 'examples/example.c')
-rw-r--r-- | examples/example.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/example.c b/examples/example.c index e82ccea..d53da46 100644 --- a/examples/example.c +++ b/examples/example.c @@ -31,8 +31,8 @@ #include <netdb.h> #endif -#include "rfb.h" -#include "keysym.h" +#include <rfb/rfb.h> +#include <rfb/keysym.h> const int bpp=4; int maxx=800, maxy=600; |