diff options
Diffstat (limited to 'version.c')
-rw-r--r-- | version.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/version.c b/version.c new file mode 100644 index 0000000000..49bdc7e33e --- /dev/null +++ b/version.c @@ -0,0 +1,36 @@ +/************************************************ + + version.c - + + $Author$ + $Revision$ + $Date$ + created at: Thu Sep 30 20:08:01 JST 1993 + + Copyright (C) 1993-1996 Yukihiro Matsumoto + +************************************************/ + +#include "ruby.h" +#include "version.h" +#include <stdio.h> + +void +Init_version() +{ + rb_define_global_const("VERSION", str_new2(RUBY_VERSION)); + rb_define_global_const("PLATFORM", str_new2(RUBY_PLATFORM)); +} + +void +show_version() +{ + fprintf(stderr, "ruby - version %s (%s)\n", RUBY_VERSION, RUBY_PLATFORM); +} + +void +show_copyright() +{ + fprintf(stderr, "ruby - Copyright (C) 1993-1997 Yukihiro Matsumoto\n"); + exit(0); +} |