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

* missing/os2.c, missing/x68.c: typo fix. pointed out by greentea.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5795 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2004-02-21 02:12:21 +00:00
parent 33e064afff
commit 59e3a0679e
3 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Sat Feb 21 11:12:08 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* missing/os2.c, missing/x68.c: typo fix. pointed out by greentea.
Fri Feb 20 19:11:20 2004 Nobuyoshi Nakada <nobu@ruby-lang.org> Fri Feb 20 19:11:20 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/ostruct.rb (OpenStruct#initialize_copy): should not share * lib/ostruct.rb (OpenStruct#initialize_copy): should not share

View file

@ -1,4 +1,4 @@
/* os/2 compatibility functions -- follows Ruby's lisence */ /* os/2 compatibility functions -- follows Ruby's license */
#include "ruby.h" #include "ruby.h"
#include <stdio.h> #include <stdio.h>

View file

@ -1,4 +1,4 @@
/* x68 compatibility functions -- follows Ruby's lisence */ /* x68 compatibility functions -- follows Ruby's license */
#include "config.h" #include "config.h"
@ -25,7 +25,7 @@ link(const char *src, const char *dst)
#include <sys/time.h> #include <sys/time.h>
struct timezone { struct timezone {
int tz_minueswest; int tz_minuteswest;
int tz_dsttime; int tz_dsttime;
}; };