home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1999 February / MACPOWER-1999-02.ISO.7z / MACPOWER-1999-02.ISO / 9902⁄AMUG / UTILITY / mac06-0.95.sit / mac06-0.95 / usr / include / netinet / netinet_in_systm.h next >
Text File  |  1998-05-01  |  362b  |  23 lines

  1. /* mac06ゥ1998 by HNS/DSITRI hns@computer.org
  2. ** netinet/in_system.h
  3. ** 01.05.1998    HNS        pulled out from ping.c
  4. */
  5.  
  6. #pragma once
  7.  
  8. /* convert host to network octet order */
  9.  
  10. #define htonl(l) (l)
  11. #define htons(s) (s)
  12. #define ntohl(l) (l)
  13. #define ntohs(s) (s)
  14.  
  15. typedef unsigned char u_char;
  16. typedef unsigned short u_short;
  17. typedef unsigned long u_long;
  18.  
  19. /* EOF */
  20.  
  21.  
  22.  
  23.