/* Set up the overlay to detect endian properties of the cpu
 * at run time.  This is a simple test.  If the bit shows up
 * in the char, then we know the cpu is little endian.
 */

const static union endian
   {  int      i;
      char     little;
   } is_endian = {1};

