emcyfra/libpqscheme_test.c
2025-02-19 18:12:20 +00:00

10 lines
195 B
C

#include <stdint.h>
int run();
__attribute__((used, section(".text"))) int cryptographic_test() {
// Run unit tests for cryptographic scheme
return 7 + run();
}
int run() { return 1; }