summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/tinyff/dbg.h4
-rw-r--r--include/tinyff/image/bmp.h6
-rw-r--r--include/tinyff/image/generic.h4
-rw-r--r--include/tinyff/image/png.h8
4 files changed, 11 insertions, 11 deletions
diff --git a/include/tinyff/dbg.h b/include/tinyff/dbg.h
index e432262..d109534 100644
--- a/include/tinyff/dbg.h
+++ b/include/tinyff/dbg.h
@@ -12,8 +12,8 @@
#include <stdio.h>
#include <stdarg.h>
-#include "result.h"
-#include "common.h"
+#include <tinyff/result.h>
+#include <tinyff/common.h>
static FILE *intff_debug_stream = NULL;
diff --git a/include/tinyff/image/bmp.h b/include/tinyff/image/bmp.h
index 194e0f2..6623b1b 100644
--- a/include/tinyff/image/bmp.h
+++ b/include/tinyff/image/bmp.h
@@ -7,9 +7,9 @@
#include <stdlib.h>
-#include "tinyff/result.h"
-#include "tinyff/stream.h"
-#include "tinyff/image/generic.h"
+#include <tinyff/result.h>
+#include <tinyff/stream.h>
+#include <tinyff/image/generic.h>
static const unsigned char BMP_SIGNATURE[2] = {
'B', 'M'
diff --git a/include/tinyff/image/generic.h b/include/tinyff/image/generic.h
index e136027..8b5bcaa 100644
--- a/include/tinyff/image/generic.h
+++ b/include/tinyff/image/generic.h
@@ -1,8 +1,8 @@
// This is the generics image header file for tinyff
// It contains generic image structures and definitions
-#include "common.h"
-#include "result.h"
+#include <tinyff/common.h>
+#include <tinyff/result.h>
#ifndef GENERIC_IMAGE_H
#define GENERIC_IMAGE_H
diff --git a/include/tinyff/image/png.h b/include/tinyff/image/png.h
index 8d1b2f0..a43d353 100644
--- a/include/tinyff/image/png.h
+++ b/include/tinyff/image/png.h
@@ -7,10 +7,10 @@
#include <string.h>
#include <stdlib.h>
-#include "tinyff/result.h"
-#include "tinyff/common.h"
-#include "tinyff/stream.h"
-#include "tinyff/image/generic.h"
+#include <tinyff.h>
+#include <tinyff/common.h>
+#include <tinyff/stream.h>
+#include <tinyff/image/generic.h>
// External
#include "ext/tinf.h"