Sign in
eclipse
/
cdt
/
org.eclipse.cdt.edc
/
f4e61ab425fa1779730985eeea09ef5c0085528b
/
.
/
org.eclipse.cdt.debug.edc.tests
/
resources
/
Projects
/
inlineFunction
/
src
/
InlineFromHeader_1.cpp
blob: be7a0ad2920db5a587e44c939c7013b8ae969208 [
file
]
#include
"inline_func.h"
int
inline_from_header_1
()
{
int
a
=
10
;
a
++;
a
=
inline_func1
(
a
);
a
++;
return
a
;
}