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