1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

update comment.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34804 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2012-02-25 07:26:22 +00:00
parent eeff98c430
commit 9056098516

View file

@ -1117,6 +1117,18 @@ Init_dbm(void)
#else
version = rb_str_new2("ndbm (unknown)");
#endif
/*
* Identifies ndbm library version.
*
* Examples:
*
* - "ndbm (4.3BSD)"
* - "Berkeley DB 4.8.30: (April 9, 2010)"
* - "Berkeley DB (unknown)" (4.4BSD, maybe)
* - "GDBM version 1.8.3. 10/15/2002 (built Jul 1 2011 12:32:45)"
* - "QDBM 1.8.78"
*
*/
rb_define_const(rb_cDBM, "VERSION", version);
}
}