Added missing file.

This commit is contained in:
Jussi Pakkanen 2013-03-12 01:12:38 +02:00
parent 5c37665e5d
commit cadc873000
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#include <string.h>
#include "config.h"
#ifdef SHOULD_BE_UNDEF
#error "FAIL!"
#endif
int main(int argc, char **argv) {
#ifndef BE_TRUE
return 1;
#else
return strcmp(MESSAGE, "mystring");
#endif
}