summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/htonl.c
blob: 4096d04f5ad8da2f9c501586e3f8449f1f3c34fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <endian.h>
#include <netinet/in.h>

uint32_t htonl(uint32_t hostlong) {
#if __BYTE_ORDER==__LITTLE_ENDIAN
  return (hostlong>>24) | ((hostlong&0xff0000)>>8) |
	  ((hostlong&0xff00)<<8) | (hostlong<<24);
#else
  return hostlong;
#endif
}

uint32_t ntohl(uint32_t hostlong) __attribute__((weak,alias("htonl")));