comparison src/test.c @ 8:5502f175d348

Show functions being called
author Thinker K.F. Li <thinker@codemud.net>
date Wed, 08 Sep 2010 22:16:25 +0800
parents 165781cb4cdd
children
comparison
equal deleted inserted replaced
7:7fec19e27411 8:5502f175d348
3 int value(int a) { 3 int value(int a) {
4 return a + 1; 4 return a + 1;
5 } 5 }
6 6
7 int 7 int
8 main(int argc, const char * const argv[]) { 8 main(int argc, const char *argv[]) {
9 printf("test %d\n", value(12)); 9 printf("test %d\n", value(12));
10 return 0; 10 return 0;
11 } 11 }