aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hardinfo2/dt_util.c1
-rw-r--r--hardinfo2/vendor.c1
-rw-r--r--modules/benchmark/bench_results.c1
-rw-r--r--modules/computer/os.c1
-rw-r--r--modules/devices/dmi_memory.c1
-rw-r--r--modules/devices/monitors.c1
-rw-r--r--shell/report.c1
7 files changed, 7 insertions, 0 deletions
diff --git a/hardinfo2/dt_util.c b/hardinfo2/dt_util.c
index 08b0e317..e269336b 100644
--- a/hardinfo2/dt_util.c
+++ b/hardinfo2/dt_util.c
@@ -22,6 +22,7 @@
* http://elinux.org/Device_Tree_Mysteries
*/
#include <unistd.h>
+#include <ctype.h>
#include <sys/types.h>
#include <inttypes.h> /* for PRIu64 */
#include <endian.h>
diff --git a/hardinfo2/vendor.c b/hardinfo2/vendor.c
index 3d7092cc..e5eb627a 100644
--- a/hardinfo2/vendor.c
+++ b/hardinfo2/vendor.c
@@ -19,6 +19,7 @@
*/
#include <string.h>
+#include <ctype.h>
#include <gtk/gtk.h>
#include "vendor.h"
diff --git a/modules/benchmark/bench_results.c b/modules/benchmark/bench_results.c
index 83c308bc..b081da55 100644
--- a/modules/benchmark/bench_results.c
+++ b/modules/benchmark/bench_results.c
@@ -19,6 +19,7 @@
*/
#include <stdlib.h>
+#include <ctype.h>
#include <locale.h>
#include <inttypes.h>
#include <json-glib/json-glib.h>
diff --git a/modules/computer/os.c b/modules/computer/os.c
index 508f0fa0..0b6bb021 100644
--- a/modules/computer/os.c
+++ b/modules/computer/os.c
@@ -18,6 +18,7 @@
#include <gdk/gdkx.h>
#include <string.h>
+#include <ctype.h>
#include <sys/utsname.h>
#include "hardinfo.h"
#include "computer.h"
diff --git a/modules/devices/dmi_memory.c b/modules/devices/dmi_memory.c
index eba26c8b..9e7ed4b3 100644
--- a/modules/devices/dmi_memory.c
+++ b/modules/devices/dmi_memory.c
@@ -20,6 +20,7 @@
#define _GNU_SOURCE
#include "hardinfo.h"
+#include <ctype.h>
#include "devices.h"
#include "vendor.h"
#include <inttypes.h>
diff --git a/modules/devices/monitors.c b/modules/devices/monitors.c
index 02fb1d67..397fa490 100644
--- a/modules/devices/monitors.c
+++ b/modules/devices/monitors.c
@@ -18,6 +18,7 @@
*/
#include "devices.h"
+#include <ctype.h>
#include "util_sysobj.h"
#include "util_edid.h"
#include "util_ids.h"
diff --git a/shell/report.c b/shell/report.c
index d264128e..21d82054 100644
--- a/shell/report.c
+++ b/shell/report.c
@@ -18,6 +18,7 @@
#include <report.h>
#include <stdio.h>
+#include <ctype.h>
#include <string.h>
#include <shell.h>
#include <iconcache.h>