view cbcsh.c @ 9:2ce34a5ff69b default tip

add pointer test
author taiki
date Tue, 08 Jan 2013 12:34:40 +0900
parents 0e1afa97fe89
children
line wrap: on
line source

#include <stdio.h>
__code loop()
{

}

__code shmain()
{
    goto loop();
}


int main()
{
    goto shmain();
    return 0;
}