Mercurial > hg > CbC > CbC_examples
view bug.c @ 1:ba74047a4d78
add Makefile for arg, bug, conv, normal and fix these .c file
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 22 Oct 2014 00:38:01 +0900 |
parents | bacef8675607 |
children |
line wrap: on
line source
#include<stdio.h> 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"); }