mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
24 lines
477 B
C
24 lines
477 B
C
![]() |
/**********************************************************************
|
||
|
|
||
|
yarv_version.h -
|
||
|
|
||
|
$Author$
|
||
|
$Date$
|
||
|
created at: 04/01/11 04:11:41 JST
|
||
|
|
||
|
Copyright (C) 2004-2006 Koichi Sasada
|
||
|
|
||
|
**********************************************************************/
|
||
|
|
||
|
#ifndef _VERSION_H_INCLUDED_
|
||
|
#define _VERSION_H_INCLUDED_
|
||
|
|
||
|
#define MAJOR_VER 0
|
||
|
#define MINOR_VER 4
|
||
|
#define DEVEL_VER 1
|
||
|
|
||
|
extern char yarv_version[];
|
||
|
extern char *yarv_options;
|
||
|
|
||
|
#endif // _VERSION_H_INCLUDED_
|