summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/decode_bmp.c2
-rw-r--r--examples/decode_ico.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/decode_bmp.c b/examples/decode_bmp.c
index e09f187..dbf83e2 100644
--- a/examples/decode_bmp.c
+++ b/examples/decode_bmp.c
@@ -25,7 +25,7 @@
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
-#include <libnsbmp.h>
+#include "../libnsbmp.h"
#define BYTES_PER_PIXEL 4
#define TRANSPARENT_COLOR 0xffffffff
diff --git a/examples/decode_ico.c b/examples/decode_ico.c
index a1cc181..b02cd57 100644
--- a/examples/decode_ico.c
+++ b/examples/decode_ico.c
@@ -25,7 +25,7 @@
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
-#include <libnsbmp.h>
+#include "../libnsbmp.h"
/* Currently the library returns the data in RGBA format,
* so there are 4 bytes per pixel */