-rw-r--r-- 111 saferewrite-20240620/src/int16_smaller_mask/ref/smaller.c raw
#include <inttypes.h> int16_t int16_smaller_mask(int16_t x,int16_t y) { if (x < y) return -1; return 0; }