diff options
Diffstat (limited to 'Tests/SimpleInstall/TestSubDir/TSD_utils.cxx')
-rw-r--r-- | Tests/SimpleInstall/TestSubDir/TSD_utils.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx b/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx new file mode 100644 index 0000000..0277f05 --- /dev/null +++ b/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx @@ -0,0 +1,10 @@ +#include <string.h> + +int TSD(const char* foo) +{ + if ( strcmp(foo, "TEST") == 0 ) + { + return 0; + } + return 1; +} |