view 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
line wrap: on
line source

#include <stdio.h>

int value(int a) {
    return a + 1;
}

int
main(int argc, const char *argv[]) {
    printf("test %d\n", value(12));
    return 0;
}