aboutsummaryrefslogtreecommitdiffstats
path: root/cont.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-16 00:19:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-16 00:19:22 +0000
commit8b1955d060f5cc38b9fabaaa6a59fa34ebc0e6d1 (patch)
tree744a74c04e552f060eeb6ac87653948b27c43c4d /cont.c
parentc36e3466a61d78908d0c86f5030e1b18073e77d3 (diff)
downloadruby-8b1955d060f5cc38b9fabaaa6a59fa34ebc0e6d1.tar.gz
cont.c: fix typedef
* cont.c (rb_fiber_struct): remove useless typedef. [Feature #10341] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'cont.c')
-rw-r--r--cont.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cont.c b/cont.c
index a9fc030af2..739ec8064f 100644
--- a/cont.c
+++ b/cont.c
@@ -130,7 +130,7 @@ static machine_stack_cache_t machine_stack_cache[MAX_MACHINE_STACK_CACHE];
static machine_stack_cache_t terminated_machine_stack;
#endif
-typedef struct rb_fiber_struct {
+struct rb_fiber_struct {
rb_context_t cont;
struct rb_fiber_struct *prev;
enum fiber_status status;