summaryrefslogtreecommitdiff
path: root/image/bmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'image/bmp.h')
-rw-r--r--image/bmp.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/image/bmp.h b/image/bmp.h
index 885b94344..bdd8ffa5f 100644
--- a/image/bmp.h
+++ b/image/bmp.h
@@ -24,11 +24,8 @@
#ifndef _NETSURF_IMAGE_BMP_H_
#define _NETSURF_IMAGE_BMP_H_
-#include "utils/config.h"
-#ifdef WITH_BMP
-
-#include <stdbool.h>
#include <libnsbmp.h>
+
#include "image/bitmap.h"
extern bmp_bitmap_callback_vt bmp_bitmap_callbacks; /** Only to be used by ICO code. */
@@ -36,11 +33,4 @@ extern bmp_bitmap_callback_vt bmp_bitmap_callbacks; /** Only to be used by ICO c
nserror nsbmp_init(void);
void nsbmp_fini(void);
-#else
-
-#define nsbmp_init() NSERROR_OK
-#define nsbmp_fini() ((void) 0)
-
-#endif /* WITH_BMP */
-
#endif