crypt: fix the prototype of md5_sum, sha256_sum and sha512_sum
[musl] / src / stdlib / imaxabs.c
1 #include <inttypes.h>
2
3 intmax_t imaxabs(intmax_t a)
4 {
5         return a>0 ? a : -a;
6 }