add directory Minix
This commit is contained in:
59
Minix/CD-ROM-2.0/MINIX/MANUALS/CAT3/ABS.3
Normal file
59
Minix/CD-ROM-2.0/MINIX/MANUALS/CAT3/ABS.3
Normal file
@@ -0,0 +1,59 @@
|
||||
|
||||
|
||||
ABS(3) Minix Programmer's Manual ABS(3)
|
||||
|
||||
|
||||
NAME
|
||||
abs - integer absolute value
|
||||
|
||||
SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
|
||||
int abs(int i)
|
||||
|
||||
DESCRIPTION
|
||||
Abs returns the absolute value of its integer operand.
|
||||
|
||||
SEE ALSO
|
||||
floor(3).
|
||||
|
||||
BUGS
|
||||
Applying the abs function to the most negative integer generates a result
|
||||
which is the most negative integer. That is, abs(0x80000000) returns
|
||||
0x80000000 as a result on a machine with 32-bit ints. Using the result
|
||||
in unsigned computations is sound however.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
May 15, 1985 1
|
||||
|
||||
Reference in New Issue
Block a user