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