From 9a4879b48f9ca1a39aa4eaa67bccc171cd5bca35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Thu, 4 Aug 2022 21:09:44 +0200 Subject: Please Clang 15 CRT.c:1015:14: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] void CRT_done() { ^ void --- XUtils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'XUtils.c') diff --git a/XUtils.c b/XUtils.c index 5d84e137..ca52e517 100644 --- a/XUtils.c +++ b/XUtils.c @@ -21,7 +21,7 @@ in the source distribution for its full text. #include "CRT.h" -void fail() { +void fail(void) { CRT_done(); abort(); -- cgit v1.2.3