pantry/projects/frei0r.dyne.org/test.c

11 lines
149 B
C
Raw Normal View History

2023-05-07 19:44:07 +03:00
#include <frei0r.h>
int main() {
int mver = FREI0R_MAJOR_VERSION;
if (mver != 0) {
return 0;
} else {
return 1;
}
}