C Language and Libraries Help (clang.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Absolute Value Functions
 Summary Example                         Up Contents Index Back
─────Run-Time Library───────────────────────────────────────────────────────
 
     The abs, fabs, _fabsl, and labs functions return the absolute
     value of their argument <x>. The functions and their return types
     are listed below:
 
     Function     Argument/Return Value
 
     abs          Integer value
     fabs         Floating-point value
     _fabsl       Long double floating-point value
     labs         Long integer value
 
     Return Value
 
     The return values for these functions are described above. There
     is no error return.
                                    -♦-