From f2e04992f0973929f6ab384a936c2b9f16c55d3a Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Wed, 14 Jan 2026 21:38:28 +0100 Subject: feat: version 1.0 --- ls_test.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ls_test.h b/ls_test.h index 4250ec7..5b87e8b 100644 --- a/ls_test.h +++ b/ls_test.h @@ -1,6 +1,8 @@ #pragma once /* Lion's Standard (LS) test harness. + * + * Version: 1.0 * * ==== TABLE OF CONTENTS ==== * @@ -204,7 +206,7 @@ #if defined(__GNUC__) || defined(__clang__) #define LS_CONSTRUCTOR __attribute__((constructor)) #else -#error "Need constructor support on this compiler" +#error "Requires __attribute__((constructor)) support" #endif typedef int (*lst_func)(void); -- cgit