freebsd-src/contrib/mandoc/test-ntohl.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
91 B
C
Raw Normal View History

#include <arpa/inet.h>
int
main(void)
{
return htonl(ntohl(0x3a7d0cdb)) != 0x3a7d0cdb;
}