00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef RUBY_VERSION_H
00024 #define RUBY_VERSION_H 1
00025
00026
00027 #define RUBY_AUTHOR "Yukihiro Matsumoto"
00028 #define RUBY_BIRTH_YEAR 1993
00029 #define RUBY_BIRTH_MONTH 2
00030 #define RUBY_BIRTH_DAY 24
00031
00032
00033 #define RUBY_API_VERSION_MAJOR 1
00034 #define RUBY_API_VERSION_MINOR 9
00035 #define RUBY_API_VERSION_TEENY 1
00036 #define RUBY_API_VERSION_CODE (RUBY_API_VERSION_MAJOR*10000+RUBY_API_VERSION_MINOR*100+RUBY_API_VERSION_TEENY)
00037
00038 #ifdef RUBY_EXTERN
00039 #if defined(__cplusplus)
00040 extern "C" {
00041 #if 0
00042 }
00043 #endif
00044 #endif
00045
00046 #if defined __GNUC__ && __GNUC__ >= 4
00047 #pragma GCC visibility push(default)
00048 #endif
00049
00050
00051
00052
00053
00054
00055
00056
00057 RUBY_EXTERN const int ruby_api_version[3];
00058 RUBY_EXTERN const char ruby_version[];
00059 RUBY_EXTERN const char ruby_release_date[];
00060 RUBY_EXTERN const char ruby_platform[];
00061 RUBY_EXTERN const int ruby_patchlevel;
00062 RUBY_EXTERN const char ruby_description[];
00063 RUBY_EXTERN const char ruby_copyright[];
00064 RUBY_EXTERN const char ruby_engine[];
00065
00066 #if defined __GNUC__ && __GNUC__ >= 4
00067 #pragma GCC visibility pop
00068 #endif
00069
00070 #if defined(__cplusplus)
00071 #if 0
00072 {
00073 #endif
00074 }
00075 #endif
00076 #endif
00077
00078 #endif
00079