diff options
author | hwspeedy <ns@bigbear.dk> | 2024-04-02 12:54:17 +0200 |
---|---|---|
committer | hwspeedy <ns@bigbear.dk> | 2024-04-02 12:54:17 +0200 |
commit | 74f4e2e6750f291a19156ebe04ac2fdf2f87a2bd (patch) | |
tree | b3da3acc2fc1ffe667ad917f2fb963ce35b4b5ee /modules | |
parent | a0d8b071f4c6426423564afdaf6cc9f15aaad986 (diff) |
FIX Implicit ctype functions - missing include
Diffstat (limited to 'modules')
-rw-r--r-- | modules/benchmark/bench_results.c | 1 | ||||
-rw-r--r-- | modules/computer/os.c | 1 | ||||
-rw-r--r-- | modules/devices/dmi_memory.c | 1 | ||||
-rw-r--r-- | modules/devices/monitors.c | 1 |
4 files changed, 4 insertions, 0 deletions
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" |