summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Fox <dyntryx@gmail.com>2008-07-15 16:03:56 +0000
committerSean Fox <dyntryx@gmail.com>2008-07-15 16:03:56 +0000
commit4c6a36a0a42be319d6e22a504fff07b19d06a258 (patch)
treed15c4489d41ed22da59d04931f1b249d7d244c00
parent007b7bd0598842d8ce144c05a7cf1ba2242db38f (diff)
downloadlibnsbmp-4c6a36a0a42be319d6e22a504fff07b19d06a258.tar.gz
libnsbmp-4c6a36a0a42be319d6e22a504fff07b19d06a258.tar.bz2
Decode examples now include local header so they're useful prior to installing the library
svn path=/branches/dynis/libnsbmp/; revision=4672
-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 */