ref: 4fd1bf0724c01b033532f643d228f6fb6cfcb886 dir: /sys/src/ape/lib/bsd/nptohl.c/
unsigned long nptohl(void *p) { unsigned char *up; unsigned long x; up = p; x = (up[0]<<24)|(up[1]<<16)|(up[2]<<8)|up[3]; return x; }