From 417742c59f2b07a97381dca465a4f9c81b7266dd Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Sat, 17 May 2025 15:55:40 -0400 Subject: [PATCH] ifdef out __sync decl --- include/global.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/global.h b/include/global.h index 42687f340..be3a78a67 100644 --- a/include/global.h +++ b/include/global.h @@ -44,7 +44,10 @@ extern int __cntlzw(uint); extern int __rlwimi(int, int, int, int, int); extern void __dcbz(void*, int); + +#ifndef __MWERKS__ extern void __sync(); +#endif #define VERSION_JPN 0 #define VERSION_USA 1