cryptol/tests/ffi/ffi-runtime-errors.c
2022-08-11 17:23:37 -07:00

11 lines
132 B
C

#include <stddef.h>
#include <stdint.h>
uint8_t f(size_t n, uint8_t *p) {
return n == 0;
}
uint8_t g(uint8_t x) {
return x;
}