mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* missing.h: fd_set stuffs need sys/types.h. fixed: [ruby-core:05179]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8606 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
eec9b911bb
commit
0a32e9daa4
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Jun 10 22:54:18 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* missing.h: fd_set stuffs need sys/types.h. fixed: [ruby-core:05179]
|
||||
|
||||
Thu Jun 9 23:58:12 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/Win32API/Win32API.c (Win32API_Call): disable global
|
||||
|
|
|
@ -21,6 +21,9 @@ struct timeval {
|
|||
time_t tv_usec; /* microseconds */
|
||||
};
|
||||
#endif
|
||||
#if defined(HAVE_SYS_TYPES_H)
|
||||
# include <sys/types.h>
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_ACOSH
|
||||
extern double acosh _((double));
|
||||
|
|
Loading…
Reference in a new issue