summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-11-01 11:24:40 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-11-01 11:24:40 +0000
commitdca6d3ec48d2bc2700111a4b72955184c2cc4660 (patch)
tree7f9d4dc7850ab8ada40cfaa554799a7381c91a85
parentb6645dd658f530f2558d5acf1db94a4ef43101b9 (diff)
downloadruby-dca6d3ec48d2bc2700111a4b72955184c2cc4660.tar.gz
ruby-dca6d3ec48d2bc2700111a4b72955184c2cc4660.tar.xz
ruby-dca6d3ec48d2bc2700111a4b72955184c2cc4660.zip
#include <sys/time.h> wasn't actually needed for ruby 1.8 as missing.h
takes care of it. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4885 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/io/wait/wait.c1
2 files changed, 0 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index d73f4012e..26d43258f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,11 +11,6 @@ Sat Nov 1 18:21:09 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
ossl_x509extfactory_set_subject_req, ossl_x509extfactory_set_config):
use underlying C struct without duplication not to leak momory.
-Sat Nov 1 18:11:18 2003 Akinori MUSHA <knu@iDaemons.org>
-
- * ext/io/wait/wait.c: #include <sys/time.h> is needed for struct
- timeval.
-
Sat Nov 1 01:49:03 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
* lib/soap/mapping/factory.rb: mark marshalled basetype objects when
diff --git a/ext/io/wait/wait.c b/ext/io/wait/wait.c
index 417841a8a..53d5bd7d1 100644
--- a/ext/io/wait/wait.c
+++ b/ext/io/wait/wait.c
@@ -14,7 +14,6 @@
#include "ruby.h"
#include "rubyio.h"
-#include <sys/time.h>
#include <sys/types.h>
#include FIONREAD_HEADER