From 64203f7c34ec24a6a902779795e2978645c4175b Mon Sep 17 00:00:00 2001 From: IanoNjuguna Date: Mon, 27 Oct 2025 00:02:31 +0300 Subject: [PATCH] fix compile warnings --- detect-cpu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/detect-cpu.c b/detect-cpu.c index d1de4c6..598fa93 100644 --- a/detect-cpu.c +++ b/detect-cpu.c @@ -1,13 +1,13 @@ /* program that prints the type of CPU it is running on and the * number of cores it has.the program is written in C and uses - * the POSIX sysconf() function to get the number of cores. -*/ + * the POSIX sysconf() function to get the number of cores. + */ #include #include +#include #include #include - // declare and define the function to get type of CPU // declare and define the function to get number of cores int get_cpu_type(void)