USB device can now be unbind
[AROS.git] / compiler / stdc / llabs.c
blob75b1f71edfa6e9b1a1c342247444ce5132b64659
1 /*
2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
3 $Id$
5 C99 function llabs().
6 */
8 /*****************************************************************************
10 NAME */
11 #include <stdlib.h>
13 long long llabs (
15 /* SYNOPSIS */
16 long long j)
18 /* FUNCTION
19 Compute the absolute value of j.
21 INPUTS
22 j - A signed long long
24 RESULT
25 The absolute value of j.
27 NOTES
29 EXAMPLE
30 // returns 1
31 labs (1L);
33 // returns 1
34 labs (-1L);
36 BUGS
38 SEE ALSO
39 abs(), labs()
41 INTERNALS
43 ******************************************************************************/
45 return (j < 0) ? -j : j;
46 } /* labs */