diff options
Diffstat (limited to 'src/stdlib/llabs.c')
-rw-r--r-- | src/stdlib/llabs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdlib/llabs.c b/src/stdlib/llabs.c index bec4a03d..9dfaf5cf 100644 --- a/src/stdlib/llabs.c +++ b/src/stdlib/llabs.c @@ -1,3 +1,5 @@ +#include <stdlib.h> + long long llabs(long long a) { return a>0 ? a : -a; |