Files
util.nix/package/c/lib/test/test.c
2025-03-12 23:19:45 +01:00

13 lines
175 B
C

#include <assert.h>
#include <stdio.h>
#include "heclib.h"
void test_function() {
}
int main(void) {
test_function();
printf("All tests passed\n");
return 0;
}