summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-06-23 16:33:51 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-06-23 16:33:51 +0000
commit3fbeb30843fcb4f196d37d0d0426aef8e5dd16ff (patch)
treed091855be77fe5b9bcb1949383ce531102c753d5
parenta4b3c35cfd53e148dca83db41b855db4127f64b8 (diff)
* version.h: added declarations of ruby_version,
ruby_release_date, ruby_platform. (backported from HEAD) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6508 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--version.h4
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d962875155..b4c71c59d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Jun 24 01:32:43 2004 Shugo Maeda <shugo@ruby-lang.org>
+
+ * version.h: added declarations of ruby_version,
+ ruby_release_date, ruby_platform.
+ (backported from HEAD)
+
Wed Jun 23 22:23:37 2004 Dave Thomas <dave@pragprog.com>
* ext/socket/socket.c (sock_s_gethostbyaddr): Work around problem
diff --git a/version.h b/version.h
index 37d3544e97..0bfb6bf489 100644
--- a/version.h
+++ b/version.h
@@ -9,3 +9,7 @@
#define RUBY_RELEASE_YEAR 2004
#define RUBY_RELEASE_MONTH 6
#define RUBY_RELEASE_DAY 23
+
+RUBY_EXTERN const char ruby_version[];
+RUBY_EXTERN const char ruby_release_date[];
+RUBY_EXTERN const char ruby_platform[];