ABS.3
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. ABS(3)                    Minix Programmer's Manual                     ABS(3)
  2. NAME
  3.      abs - integer absolute value
  4. SYNOPSIS
  5.      #include <stdlib.h>
  6.      int abs(int i)
  7. DESCRIPTION
  8.      Abs returns the absolute value of its integer operand.
  9. SEE ALSO
  10.      floor(3).
  11. BUGS
  12.      Applying the abs function to the most negative integer generates a result
  13.      which  is  the  most  negative integer.  That is, abs(0x80000000) returns
  14.      0x80000000 as a result on a machine with 32-bit ints.  Using  the  result
  15.      in unsigned computations is sound however.
  16.                                 May 15, 1985                                 1