#include <stdint.h>
#include <string.h>
#include <endian.h>

void int8_store(unsigned char *s,int8_t x)
{
  *s = x;
}