#define SWAP2(a) ( (((a) & 0xff) << 8) | \
		(((a) >> 8) & 0xff) )

int kzext2_ (unsigned short *s)
{
	return (int) SWAP2(*s);
}
