summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-09 23:23:39 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-09 23:23:39 +0000
commit73f891f1a5dafb1709b333d953ad8b50af7ee1f9 (patch)
tree218f4ff14ab61b7d5d954436cf4036907a71a422 /internal.h
parent70cd493b050f6328f2dbe43dad6741d9f0a96d92 (diff)
fix RMoved definition location
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index cf630d9e56..46a25ff77f 100644
--- a/internal.h
+++ b/internal.h
@@ -830,6 +830,11 @@ struct RHash {
# define RHASH_SIZE(h) (RHASH_AR_TABLE_P(h) ? RHASH_AR_TABLE_SIZE_RAW(h) : RHASH_ST_SIZE(h))
#endif /* #ifdef RHASH_ITER_LEV */
+struct RMoved {
+ VALUE flags;
+ VALUE destination;
+};
+
/* missing/setproctitle.c */
#ifndef HAVE_SETPROCTITLE
extern void ruby_init_setproctitle(int argc, char *argv[]);