From 2fa8f8653e2224947cb614fb297d4d11ac94400d Mon Sep 17 00:00:00 2001 From: hanez Date: Wed, 14 Jan 2026 02:28:16 +0100 Subject: [PATCH] Alpine musl libc build warning fix. (0.37.51) --- CMakeLists.txt | 2 +- src/vm.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b445624..de66e88 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10) -project(fun VERSION 0.37.50 LANGUAGES C) +project(fun VERSION 0.37.51 LANGUAGES C) set(CMAKE_C_STANDARD 99) set(CMAKE_C_STANDARD_REQUIRED ON) diff --git a/src/vm.c b/src/vm.c index e20c91f..01864f8 100644 --- a/src/vm.c +++ b/src/vm.c @@ -63,7 +63,8 @@ /* Central INI handle registry and helpers */ #include "vm/ini/handles.c" #endif -/* Note: INI opcode handlers are included below; changes in vm/ini/*.c require vm.c to rebuild. */ +/* Note: INI opcode handlers are included below; changes in vm/ini/ .c files + * require vm.c to rebuild. */ #include "external/json.c" #include "external/libsql.c" #include "external/pcsc.c"