1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

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.

This commit is contained in:
obarthel
2023-09-08 16:00:38 +02:00
parent 1286b86f07
commit 64ba9b5389

View File

@ -189,6 +189,10 @@ extern BOOL NOCOMMON __lib_startup;
/****************************************************************************/
extern int __addition_overflows(ULONG x, ULONG y);
/****************************************************************************/
extern void NOCOMMON (*__alloca_trap)(void);
/****************************************************************************/