diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-08-15 09:04:32 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-08-15 09:04:32 +0000 |
commit | 82178a552907e413a09f5dfe646fb3e876f4011c (patch) | |
tree | 7c3144aaa982b4f882818211b22f7a1fd4b27ba8 /env.h | |
parent | 740a664bc8615656bea6e1181bf5c65ee56d8a60 (diff) | |
download | ruby-82178a552907e413a09f5dfe646fb3e876f4011c.tar.gz |
matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@894 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'env.h')
-rw-r--r-- | env.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -25,10 +25,14 @@ extern struct FRAME { char *file; int line; int iter; + int flags; } *ruby_frame; void rb_gc_mark_frame _((struct FRAME *)); +#define FRAME_ALLOCA 0 +#define FRAME_MALLOC 1 + extern struct SCOPE { struct RBasic super; ID *local_tbl; |