comparison struct_longjump.c @ 8:a7c771f554e7

remove #include but warnings were not removed
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Sun, 01 Dec 2013 20:23:27 +0900
parents c49bf9e28ea8
children 3f7c32b23851
comparison
equal deleted inserted replaced
7:c49bf9e28ea8 8:a7c771f554e7
1 #include <stdio.h> 1 int setjmp(int*);
2 #include <setjmp.h> 2 int longjmp(int*,int);
3 int printf(const char*,...);
3 4
4 struct CbC_env { 5 struct CbC_env {
5 void *ret_p,*env; 6 void *ret_p,*env;
6 }; 7 };
7 8