aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/meh.h2
-rw-r--r--src/netpbm.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/src/meh.h b/src/meh.h
index 88f36e3..a2aa42f 100644
--- a/src/meh.h
+++ b/src/meh.h
@@ -35,6 +35,7 @@ void setaspect(unsigned int w, unsigned int h);
void xinit();
void drawimage(XImage *ximg, unsigned int width, unsigned int height);
XImage *getimage(struct image *img, unsigned int width, unsigned int height, int fast);
+void freeXImg(XImage *ximg);
#ifdef TDEBUG
#define TDEBUG_START \
@@ -58,3 +59,4 @@ extern struct imageformat netpbm;
extern struct imageformat imagemagick;
+
diff --git a/src/netpbm.c b/src/netpbm.c
index ef61c8e..2c91879 100644
--- a/src/netpbm.c
+++ b/src/netpbm.c
@@ -1,6 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <ctype.h>
#include "meh.h"