-rw-r--r-- 107 saferewrite-20240807/src/int8_smaller_mask/ref/smaller.c raw
#include <inttypes.h> int8_t int8_smaller_mask(int8_t x,int8_t y) { if (x < y) return -1; return 0; }