view CbC-examples/test03.c @ 32:59194914942b

add documents. CbC-INSTALL: howto build the gcc for various systems. CbC-implementation.ja: methods of implementation for CbC's statement.
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Tue, 08 Dec 2009 14:07:28 +0900
parents 4c6926a2b9bc
children
line wrap: on
line source


extern void test02() ;
extern void test03() ;

extern int data;

extern void
test01() {
    test02();
}

extern void
test02() {
    test03();
}

extern void
test03() {
    data = 3;
}

int
main()
{
    test01();
}