view test/tmp12.c @ 168:b1297c82e926 cpost-removal

cpostinc removal
author kono
date Mon, 24 Nov 2003 19:14:45 +0900
parents cc2fc5c0dfe5
children 096559f07a70
line wrap: on
line source



struct {
    int a;
    char *b;
} x1;

// int b;

main()
{
    int a;
    x1.a = 1;
    a = 133;
    printf("%d %d\n",x1.a,a);
}