OSDN Git Service

(split) Convert contrib and obsolete pages to UTF-8.
[linuxjm/LDP_man-pages.git] / obsolete / man3 / labs.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:43:34 1993, David Metcalfe
28 .\" Modified Sun Jun  6 23:28:55 1993, David Metcalfe
29 .\" Modified Sat Jul 24 19:04:14 1993, Rik Faith (faith@cs.unc.edu)
30 .\"
31 .\" 
32 .\" Japanese Version Copyright (c) 1997 Takashi YOSHINO
33 .\"         all rights reserved.
34 .\" Translated Tue Jan21 21:20:00 JST 1997
35 .\"         by Takashi YOSHINO <yoshino@civil.jcn.nihon-u.ac.jp>
36 .\"
37 .TH LABS 3  "June 6, 1993" "GNU" "Linux Programmer's Manual"
38 .SH 名前
39 labs \- ロング整数の絶対値を計算する.
40 .SH 書式
41 .nf
42 .B #include <stdlib.h>
43 .sp
44 .BI "long int labs(long int " j );
45 .fi
46 .SH 説明
47 \fBlabs()\fP 関数はロング整数の引数\fIj\fPの絶対値を計算する.
48 .SH "返り値"
49 ロング整数の引数の絶対値を返す.
50 .SH "準拠"
51 SVID 3, BSD 4.3, ISO 9899
52 .SH 注意
53 得ることができる最も小さい負の整数の絶対値の大きさが定義されていない.
54 .SH "関連項目"
55 .BR abs "(3), " ceil "(3), " floor "(3), " fabs "(3), " rint (3)