blob: 3769342ba3eed247c2939938582b2602af92908d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <botan/botan.h>
#include <botan/version.h>
int main()
{
using namespace Botan;
#if BOTAN_VERSION_CODE >= BOTAN_VERSION_CODE_FOR(2,0,0)
return 0;
#endif
return 1;
}
|