From c09189287ae75a57930ab7d3d86487a92be89c1c Mon Sep 17 00:00:00 2001 From: Simon Schubert Date: Sat, 24 Nov 2007 00:55:10 +0000 Subject: [PATCH] Add llabs(3). --- include/stdlib.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/stdlib.h b/include/stdlib.h index 3ec0350f4a..c901a126bd 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -32,7 +32,7 @@ * * @(#)stdlib.h 8.5 (Berkeley) 5/19/95 * $FreeBSD: src/include/stdlib.h,v 1.16.2.5 2002/12/13 01:34:00 tjr Exp $ - * $DragonFly: src/include/stdlib.h,v 1.19 2006/12/05 23:14:51 dillon Exp $ + * $DragonFly: src/include/stdlib.h,v 1.20 2007/11/24 00:55:10 corecode Exp $ */ #ifndef _STDLIB_H_ @@ -104,6 +104,7 @@ void srand(unsigned); double strtod(const char *, char **); #ifdef __LONG_LONG_SUPPORTED long long int atoll(const char *); +long long llabs(long long) __pure2; long long strtoll(const char *, char **, int); unsigned long long strtoull(const char *, char **, int); #endif -- 2.41.0