lean4-htt/tests/lake/examples/ffi/lib/c/ffi_static.c
Mac Malone aa3d409eb6
refactor: lake: mv tests/examples to top-level tests dir (#10688)
This PR moves Lake's test infrastructure from `src/lake` to
`tests/lake`.
2025-10-06 21:47:57 +00:00

5 lines
81 B
C

#include <stdint.h>
uint32_t my_add(uint32_t a, uint32_t b) {
return a + b;
}