mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
11 lines
149 B
C
11 lines
149 B
C
|
#include <frei0r.h>
|
||
|
|
||
|
int main() {
|
||
|
int mver = FREI0R_MAJOR_VERSION;
|
||
|
if (mver != 0) {
|
||
|
return 0;
|
||
|
} else {
|
||
|
return 1;
|
||
|
}
|
||
|
}
|