blob: 5a09f8e1b391bed4fe51e38cc87e969ef9b9cf69 [file] [log] [blame]
int shared_version();
int static_version();
int mixed_version();
int main()
{
return mixed_version() == 0 && shared_version() == 0 &&
static_version() == 0;
}