From 47f4bf418805e7ebfc0b52c133fa846e2a059762 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Mon, 23 Oct 2023 15:31:02 +0100 Subject: [PATCH] Fix tests or #252. --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index ec8388c4..9a49692a 100755 --- a/configure +++ b/configure @@ -907,7 +907,7 @@ int main(void) { return 0; } EOF - if $XCC __memset_explicit.c -o _memset_explicit 2>&3; then + if $XCC _memset_explicit.c -o _memset_explicit 2>&3; then MEMSET_EXPLICIT=yes else MEMSET_EXPLICIT=no @@ -952,7 +952,7 @@ int main(void) { return 0; } EOF - if $XCC __memset_s.c -o _memset_s 2>&3; then + if $XCC _memset_s.c -o _memset_s 2>&3; then MEMSET_S=yes else MEMSET_S=no -- 2.47.2