Mercurial > hg > CbC > CbC_examples
annotate 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 |
rev | line source |
---|---|
1
ba74047a4d78
add Makefile for arg, bug, conv, normal and fix these .c file
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
1 #include<stdio.h> |
ba74047a4d78
add Makefile for arg, bug, conv, normal and fix these .c file
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
2 |
0 | 3 typedef void (*atexit_callback)(void); |
4 typedef void (*cxa_atexit_callback)(void *); | |
5 struct one_atexit_routine | |
6 { | |
7 int callback; | |
8 }; | |
9 | |
10 | |
11 static int | |
12 atexit_common (const struct one_atexit_routine *r, const void *dso) | |
13 | |
14 | |
15 { | |
16 return 0; | |
17 } | |
18 | |
19 int main(){ | |
20 printf("hello\n"); | |
21 } |