xref: /freebsd/contrib/mandoc/test-ntohl.c (revision 8df8b2d3e51d1b816201d8a1fe8bc29fe192e562)
1 #include <arpa/inet.h>
2 
3 int
4 main(void)
5 {
6 	return htonl(ntohl(0x3a7d0cdb)) != 0x3a7d0cdb;
7 }
8