From 7fdcc2c0f82e58d753487a1a18fff0043e693476 Mon Sep 17 00:00:00 2001 From: Greg Bowne Date: Wed, 7 Feb 2024 23:25:20 -0800 Subject: [PATCH] Patched version of C Standard used in set(CMAKE_C_STANDARD) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index caa3900..3f0c1d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,7 @@ elseif ("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "arm64" OR "${CMAKE_SYSTEM_PROCESSO message("Building for the ARM64 architecture.") endif () -set(CMAKE_C_STANDARD 23) +set(CMAKE_C_STANDARD 11) add_executable(CustomHeapManager main.c)