summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Grenier <[email protected]>2014-11-15 12:02:37 +0100
committerChristophe Grenier <[email protected]>2014-11-15 12:02:37 +0100
commitc489c15ad746fc1448827f53c787d1c2f9d675a2 (patch)
treec31a711510322009b0e952a75025d6bc15b4204c
parentf8fe77161cc70c315acebe6ff01477ec9cd82cc8 (diff)
Add missing ctype.h include
-rw-r--r--src/file_asm.c1
-rw-r--r--src/file_drw.c1
-rw-r--r--src/file_frm.c1
-rw-r--r--src/file_jpg.c1
-rw-r--r--src/file_pnm.c1
-rw-r--r--src/file_tph.c1
-rw-r--r--src/file_xv.c1
7 files changed, 7 insertions, 0 deletions
diff --git a/src/file_asm.c b/src/file_asm.c
index fecf482e..dbfe3d9f 100644
--- a/src/file_asm.c
+++ b/src/file_asm.c
@@ -27,6 +27,7 @@
#include <string.h>
#endif
#include <stdio.h>
+#include <ctype.h>
#include "types.h"
#include "filegen.h"
diff --git a/src/file_drw.c b/src/file_drw.c
index a377c079..2a6a3111 100644
--- a/src/file_drw.c
+++ b/src/file_drw.c
@@ -27,6 +27,7 @@
#include <string.h>
#endif
#include <stdio.h>
+#include <ctype.h>
#include "types.h"
#include "filegen.h"
diff --git a/src/file_frm.c b/src/file_frm.c
index 826bd8dc..c6baafba 100644
--- a/src/file_frm.c
+++ b/src/file_frm.c
@@ -27,6 +27,7 @@
#include <string.h>
#endif
#include <stdio.h>
+#include <ctype.h>
#include "types.h"
#include "filegen.h"
diff --git a/src/file_jpg.c b/src/file_jpg.c
index 27920a21..c1924052 100644
--- a/src/file_jpg.c
+++ b/src/file_jpg.c
@@ -42,6 +42,7 @@
#include <jpeglib.h>
#include "suspend.h"
#endif
+#include <ctype.h> /* isprint */
#include "filegen.h"
#include "common.h"
#include "log.h"
diff --git a/src/file_pnm.c b/src/file_pnm.c
index 066c37c9..612aa568 100644
--- a/src/file_pnm.c
+++ b/src/file_pnm.c
@@ -27,6 +27,7 @@
#include <string.h>
#endif
#include <stdio.h>
+#include <ctype.h>
#include "types.h"
#include "filegen.h"
diff --git a/src/file_tph.c b/src/file_tph.c
index 4aa7de75..99e532fd 100644
--- a/src/file_tph.c
+++ b/src/file_tph.c
@@ -27,6 +27,7 @@
#include <string.h>
#endif
#include <stdio.h>
+#include <ctype.h>
#include "types.h"
#include "filegen.h"
diff --git a/src/file_xv.c b/src/file_xv.c
index 9722110a..5b48e208 100644
--- a/src/file_xv.c
+++ b/src/file_xv.c
@@ -27,6 +27,7 @@
#include <string.h>
#endif
#include <stdio.h>
+#include <ctype.h>
#include "types.h"
#include "common.h"
#include "filegen.h"