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