#include <inttypes.h>

int16_t int16_shlmod(int16_t x,int16_t y)
{
  return x << (y & 15);
}