Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tools/samples/org.eclipse.ptp.pldt.sampleCDTstaticAnalysis/samples/Hello.c')
-rw-r--r--tools/samples/org.eclipse.ptp.pldt.sampleCDTstaticAnalysis/samples/Hello.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/samples/org.eclipse.ptp.pldt.sampleCDTstaticAnalysis/samples/Hello.c b/tools/samples/org.eclipse.ptp.pldt.sampleCDTstaticAnalysis/samples/Hello.c
deleted file mode 100644
index efe282bfe..000000000
--- a/tools/samples/org.eclipse.ptp.pldt.sampleCDTstaticAnalysis/samples/Hello.c
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-#include <stdio.h>
-#define MYVAR 42
-
-int graphtest(void) {
- int a,b;
- int pi=3.14;
- a=0;
- b=MYVAR; // use defined
- b = b + a;
- a=3.14;
- return b;
-}
-

Back to the top