summaryrefslogtreecommitdiff
path: root/Tests/SimpleInstallS2/TestSubDir/TSD_utils.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/SimpleInstallS2/TestSubDir/TSD_utils.cxx')
-rw-r--r--Tests/SimpleInstallS2/TestSubDir/TSD_utils.cxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/SimpleInstallS2/TestSubDir/TSD_utils.cxx b/Tests/SimpleInstallS2/TestSubDir/TSD_utils.cxx
new file mode 100644
index 000000000..0277f05ae
--- /dev/null
+++ b/Tests/SimpleInstallS2/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;
+}