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 >
Wrap
Text File
|
1998-05-01
|
362b
|
23 lines
/* mac06ゥ1998 by HNS/DSITRI hns@computer.org
** netinet/in_system.h
** 01.05.1998 HNS pulled out from ping.c
*/
#pragma once
/* convert host to network octet order */
#define htonl(l) (l)
#define htons(s) (s)
#define ntohl(l) (l)
#define ntohs(s) (s)
typedef unsigned char u_char;
typedef unsigned short u_short;
typedef unsigned long u_long;
/* EOF */