summaryrefslogtreecommitdiff
path: root/version.c
blob: 7f1832a4afcd02afad05aebc0f22af45287d91f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/************************************************

  version.c -

  $Author$
  $Revision$
  $Date$
  created at: Thu Sep 30 20:08:01 JST 1993

  Copyright (C) 1993-1998 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 %s(%s) [%s]\n", RUBY_VERSION, VERSION_DATE, RUBY_PLATFORM);
}

void
show_copyright()
{
    fprintf(stderr, "ruby - Copyright (C) 1993-1998 Yukihiro Matsumoto\n");
    exit(0);
}