From 64ba9b5389bcdee9c8331d6356a5466973b28460 Mon Sep 17 00:00:00 2001 From: obarthel Date: Fri, 8 Sep 2023 16:00:38 +0200 Subject: [PATCH] Added the __addition_overflows() function prototype, which is used by code which checks for unsigned 32 bit integer sums exceeding the range of an unsigned 32 bit integer. --- library/stdlib_headers.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/library/stdlib_headers.h b/library/stdlib_headers.h index 0b0155d..35d0dd0 100644 --- a/library/stdlib_headers.h +++ b/library/stdlib_headers.h @@ -189,6 +189,10 @@ extern BOOL NOCOMMON __lib_startup; /****************************************************************************/ +extern int __addition_overflows(ULONG x, ULONG y); + +/****************************************************************************/ + extern void NOCOMMON (*__alloca_trap)(void); /****************************************************************************/