diff options
| -rw-r--r-- | configs/debug.mk | 2 | ||||
| -rw-r--r-- | src/meh.h | 2 | ||||
| -rw-r--r-- | src/netpbm.c | 1 | 
3 files changed, 4 insertions, 1 deletions
| diff --git a/configs/debug.mk b/configs/debug.mk index 2cec38a..59d13e2 100644 --- a/configs/debug.mk +++ b/configs/debug.mk @@ -1 +1 @@ -CFLAGS += -O0 -g -Wall +CFLAGS += -O0 -g -Wall -Wextra @@ -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" | 
