From ac78fad3ec681a806dafd8264072228de2f469be Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Tue, 12 Jul 2016 12:49:04 -0400 Subject: [PATCH] make stdlib.h match labs.c's declaration --- Library/include/stdlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/include/stdlib.h b/Library/include/stdlib.h index 99686147..d9180f04 100644 --- a/Library/include/stdlib.h +++ b/Library/include/stdlib.h @@ -44,7 +44,7 @@ extern long atol(const char *__nptr); extern double atof(const char *__nptr); extern int abs(int __i); -extern int labs(long __i); +extern long labs(long __i); extern char *_itoa(int __value); extern char *_uitoa(unsigned int __value); extern char *_ltoa(long __value); -- 2.34.1