home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / compat / string / ffs.s next >
Encoding:
Text File  |  1995-05-09  |  151 b   |  9 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2.     .global    _ffs
  3. _ffs:
  4.     bsfl    4(%esp), %eax
  5.     jnz    .Lzero
  6.     movl    $0,%eax
  7. .Lzero:
  8.     ret
  9.