diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-06-10 13:56:08 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-06-10 13:56:08 +0000 |
| commit | 094144c60e84bc899c5960790bab270800dfabdc (patch) | |
| tree | b9ae7dce18c4d749e1c480fecef864c01bef9122 /missing.h | |
| parent | f88af8adf17a163afc4e1ba6ab5ec0846cacefac (diff) | |
| download | ruby-094144c60e84bc899c5960790bab270800dfabdc.tar.gz ruby-094144c60e84bc899c5960790bab270800dfabdc.tar.xz ruby-094144c60e84bc899c5960790bab270800dfabdc.zip | |
* missing.h: fd_set stuffs need sys/types.h. fixed: [ruby-core:05179]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8606 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing.h')
| -rw-r--r-- | missing.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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)); |
