home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / MATH / ATAN.S < prev    next >
Encoding:
Text File  |  1993-01-02  |  324 b   |  20 lines

  1. / atan.s (emx+gcc) -- Copyright (c) 1991-1993 by Eberhard Mattes
  2.  
  3. #include <libm.h>
  4.  
  5.         .globl  _atan
  6.  
  7.         .text
  8.  
  9.         .align  2, 0x90
  10.  
  11. / double atan (double x)
  12.  
  13. #define x       4(%esp)
  14.  
  15. _atan:
  16.         fldl    x                       / x
  17.         fldl    __const_ONE
  18.         fpatan
  19.         ret
  20.