Mercurial > hg > CbC > CbC_gcc
view CbC-examples/bug.c @ 21:959d4c8c8abc
add conv.c conv1.c
author | kent <kent@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 29 Sep 2009 20:15:16 +0900 |
parents | 4c6926a2b9bc |
children | 5d30d517ebed |
line wrap: on
line source
typedef void (*atexit_callback)(void); typedef void (*cxa_atexit_callback)(void *); struct one_atexit_routine { int callback; }; static int atexit_common (const struct one_atexit_routine *r, const void *dso) { return 0; } int main(){ printf("hello\n"); }