Sign in
eclipse
/
ptp
/
org.eclipse.ptp
/
refs/tags/PTP_7_0_5
/
.
/
tools
/
samples
/
org.eclipse.ptp.pldt.sampleCDTstaticAnalysis
/
samples
/
Hello.c
blob: efe282bfec7bb95149b21a40facbc7c2ae14558e [
file
] [
log
] [
blame
]
#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
;
}