12 lines
374 B
C
12 lines
374 B
C
/* Vax Internet number representation function declarations. */
|
|
|
|
#undef ntohl
|
|
#undef ntohs
|
|
#undef htonl
|
|
#undef htons
|
|
|
|
extern unsigned long int EXFUN(ntohl, (unsigned long int));
|
|
extern unsigned short int EXFUN(ntohs, (unsigned short int));
|
|
extern unsigned long int EXFUN(htonl, (unsigned long int));
|
|
extern unsigned short int EXFUN(htons, (unsigned short int));
|