changeset 15:e0c89847fb78

remove include
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Sun, 19 Jan 2014 02:52:44 +0900
parents 1cd0fad44dac
children 6ec369858a50
files struct_longjump.c
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/struct_longjump.c	Tue Jan 14 02:01:41 2014 +0900
+++ b/struct_longjump.c	Sun Jan 19 02:52:44 2014 +0900
@@ -2,9 +2,7 @@
 
 __code code1(int n,__code(*exit___code)(int,void *),void *exit_env){
   printf("code1 : code entry1\n");
-  double aua;
-  goto 1;
-  //  goto exit___code(n,exit_env);
+  goto exit___code(n,exit_env);
 }
 
 int main1 (){