* sizes.c (Init_sizes): Define the size of clock_t.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42682 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2013-08-25 12:07:09 +00:00
parent 36c4a3015f
commit dac8c1e564
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Sun Aug 25 21:02:15 2013 Tanaka Akira <akr@fsij.org>
* sizes.c (Init_sizes): Define the size of clock_t.
Sun Aug 25 01:47:47 2013 Tanaka Akira <akr@fsij.org>
* bignum.c (BARY_SHORT_MUL): Renamed from BARY_MUL1.

View File

@ -41,6 +41,9 @@ Init_sizes(void)
#if SIZEOF_TIME_T != 0
DEFINE(time_t, TIME_T);
#endif
#if SIZEOF_CLOCK_T != 0
DEFINE(clock_t, CLOCK_T);
#endif
#if SIZEOF_SIZE_T != 0
DEFINE(size_t, SIZE_T);
#endif