OSDN Git Service

ef3d3f7036991e6ca580a21622c3651be23c5702
[linuxjm/LDP_man-pages.git] / original / man3 / abs.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one.
11 .\"
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\"
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" References consulted:
24 .\"     Linux libc source code
25 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
26 .\"     386BSD man pages
27 .\" Modified Mon Mar 29 22:31:13 1993, David Metcalfe
28 .\" Modified Sun Jun  6 23:27:50 1993, David Metcalfe
29 .\" Modified Sat Jul 24 21:45:37 1993, Rik Faith (faith@cs.unc.edu)
30 .\" Modified Sat Dec 16 15:02:59 2000, Joseph S. Myers
31 .\"
32 .TH ABS 3  2010-09-20 "GNU" "Linux Programmer's Manual"
33 .SH NAME
34 abs, labs, llabs, imaxabs \- compute the absolute value of an integer
35 .SH SYNOPSIS
36 .nf
37 .B #include <stdlib.h>
38 .sp
39 .BI "int abs(int " j );
40 .br
41 .BI "long int labs(long int " j );
42 .br
43 .BI "long long int llabs(long long int " j );
44 .sp
45 .B #include <inttypes.h>
46 .sp
47 .BI "intmax_t imaxabs(intmax_t " j );
48 .fi
49 .sp
50 .in -4n
51 Feature Test Macro Requirements for glibc (see
52 .BR feature_test_macros (7)):
53 .in
54 .sp
55 .ad l
56 .BR llabs ():
57 .RS 4
58 _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE ||
59 _POSIX_C_SOURCE\ >=\ 200112L;
60 .br
61 or
62 .I cc\ -std=c99
63 .ad
64 .SH DESCRIPTION
65 The
66 .BR abs ()
67 function computes the absolute value of the integer
68 argument \fIj\fP.
69 The
70 .BR labs (),
71 .BR llabs ()
72 and
73 .BR imaxabs ()
74 functions compute the absolute value of the argument \fIj\fP of the
75 appropriate integer type for the function.
76 .SH "RETURN VALUE"
77 Returns the absolute value of the integer argument, of the appropriate
78 integer type for the function.
79 .SH "CONFORMING TO"
80 SVr4, POSIX.1-2001, 4.3BSD, C99.
81 .\" POSIX.1 (1996 edition) only requires the
82 .\" .BR abs ()
83 .\" function.
84 C89 only
85 includes the
86 .BR abs ()
87 and
88 .BR labs ()
89 functions; the functions
90 .BR llabs ()
91 and
92 .BR imaxabs ()
93 were added in C99.
94 .SH NOTES
95 Trying to take the absolute value of the most negative integer
96 is not defined.
97 .PP
98 The
99 .BR llabs ()
100 function is included in glibc since version 2.0, but
101 is not in libc5 or libc4.
102 The
103 .BR imaxabs ()
104 function is included in
105 glibc since version 2.1.1.
106 .PP
107 For
108 .BR llabs ()
109 to be declared, it may be necessary to define
110 \fB_ISOC99_SOURCE\fP or \fB_ISOC9X_SOURCE\fP (depending on the
111 version of glibc) before including any standard headers.
112 .PP
113 GCC handles
114 .BR abs ()
115 and
116 .BR labs ()
117 as built-in functions.
118 GCC 3.0 also handles
119 .BR llabs ()
120 and
121 .BR imaxabs ()
122 as built-ins.
123 .SH "SEE ALSO"
124 .BR cabs (3),
125 .BR ceil (3),
126 .BR fabs (3),
127 .BR floor (3),
128 .BR rint (3)