xref: /freebsd/contrib/mandoc/test-be32toh.c (revision 01d4e2149e5566e5d9394913dc9fb032da259e0b)
1 #ifdef SYS_ENDIAN
2 #include <sys/endian.h>
3 #else
4 #include <endian.h>
5 #endif
6 
7 int
main(void)8 main(void)
9 {
10 	return htobe32(be32toh(0x3a7d0cdb)) != 0x3a7d0cdb;
11 }
12