Sign in
eclipse
/
ptp
/
org.eclipse.ptp
/
refs/tags/PTP_7_0_5
/
.
/
tools
/
samples
/
org.eclipse.ptp.pldt.sampleCDTstaticAnalysis
/
samples
/
walkast.c
blob: 26deb89a55b07201ac1619835051f1d910566a6c [
file
] [
log
] [
blame
]
// p16
#include
<stdio.h>
#define
MYVAR
42
int
main
(
void
)
{
int
a
,
b
;
a
=
0
;
b
=
MYVAR
;
// use defined
b
=
b
+
a
;
return
b
;
}
int
foo
(
int
bar
){
int
z
=
bar
;
return
z
;
}