xref: /third_party/musl/src/stdlib/llabs.c (revision 570af302)
1#include <stdlib.h>
2
3long long llabs(long long a)
4{
5	return a>0 ? a : -a;
6}
7