1 /* #include "port_before.h" */ 2 #include "config.h" 3 4 #ifdef STDC_HEADERS 5 # include <stdio.h> 6 #endif 7 8 #include <sys/types.h> 9 10 #include <netinet/in.h> 11 #include "arpa_nameser.h" 12 13 14 u_int 15 __ns_get16(src) 16 const u_char *src; 17 { 18 u_int dst; 19 20 NS_GET16(dst, src); 21 return (dst); 22 }