home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / math / sqrt.s < prev    next >
Encoding:
Text File  |  1994-11-23  |  117 b   |  7 lines

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2.     .globl    _sqrt
  3. _sqrt:
  4.     fldl    4(%esp)
  5.     fsqrt
  6.     ret
  7.