X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdlib%2Fllabs.c;h=9dfaf5cf766d29bb950876339f3836ee31311416;hb=49b6df3d9f3645de55607f1ac60095b22661b334;hp=bec4a03d6685ce02ddf5294f812a4bcd0e0cea66;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl 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 + long long llabs(long long a) { return a>0 ? a : -a;