home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / pc_hw / endian / ntohs.s < prev    next >
Encoding:
Text File  |  1995-02-26  |  155 b   |  9 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <libc/asmdefs.h>
  3.  
  4.     FUNC(_ntohs)
  5.  
  6.     movl    4(%esp), %eax
  7.     xchgb    %ah, %al
  8.     ret
  9.