blob: 0bcde169c7b7dc7ed0ddf0b68a9b5f24b471bdc4 [file] [log] [blame]
#include <string.h>
const char* does_it_work();
int a_fun();
int main() {
if(strcmp(does_it_work(), "yes it does") != 0) {
return -a_fun();
}
return 0;
}