From f2bd4e1132fcf562af017cb5f78243cf41b73485 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Sun, 30 Nov 2025 13:18:19 -0800 Subject: [PATCH] a newline holds up the build --- CMakeLists.txt | 2 +- core.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 45a08f6..4450293 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15) project(ke C) # Specify C language explicitly set(CMAKE_C_STANDARD 99) -set(KE_VERSION "2.1.3") +set(KE_VERSION "2.1.4") set(CMAKE_C_FLAGS "-Wall -Wextra -pedantic -Wshadow -Werror -std=c99 -g") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_DEFAULT_SOURCE -D_XOPEN_SOURCE") diff --git a/core.h b/core.h index f2d0c3b..0e400ca 100644 --- a/core.h +++ b/core.h @@ -36,4 +36,4 @@ void kwrite(int fd, const char *buf, int len); void die(const char *s); -#endif \ No newline at end of file +#endif