Sign in
eclipse
/
linuxtools
/
org.eclipse.linuxtools
/
refs/heads/rdt
/
.
/
systemtap
/
org.eclipse.linuxtools.callgraph.launch.tests
/
resources
/
basicTest
/
main.c
blob: c8fafdd2a9418879042e328ed675f581e5abd2e9 [
file
] [
log
] [
blame
]
/*
* main.c
*
* Created on: 2009-09-21
* Author: chwang
*/
#include
<stdio.h>
void
calledOnce
()
{
printf
(
"Called\n"
);
}
void
calledTwice
()
{
printf
(
"Double\n"
);
}
int
main
()
{
printf
(
"Done\n"
);
calledOnce
();
calledTwice
();
calledTwice
();
return
0
;
}