2003-07-23 12:12:24 -04:00
|
|
|
/*
|
|
|
|
* 'OpenSSL for Ruby' project
|
|
|
|
* Copyright (C) 2001-2003 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
/*
|
2015-04-19 23:55:09 -04:00
|
|
|
* This program is licensed under the same licence as Ruby.
|
2003-07-23 12:12:24 -04:00
|
|
|
* (See the file 'LICENCE'.)
|
|
|
|
*/
|
|
|
|
#if !defined(_OSSL_RUBY_MISSING_H_)
|
2007-04-03 03:21:53 -04:00
|
|
|
#define _OSSL_RUBY_MISSING_H_
|
2007-04-02 20:37:13 -04:00
|
|
|
|
2016-06-19 05:42:30 -04:00
|
|
|
#ifndef RB_INTEGER_TYPE_P
|
|
|
|
/* for Ruby 2.3 compatibility */
|
|
|
|
#define RB_INTEGER_TYPE_P(obj) (RB_FIXNUM_P(obj) || RB_TYPE_P(obj, T_BIGNUM))
|
|
|
|
#endif
|
|
|
|
|
2007-04-03 03:21:53 -04:00
|
|
|
#endif /* _OSSL_RUBY_MISSING_H_ */
|