diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-06 14:04:05 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-06 14:04:05 +0000 |
| commit | afe0bea5fef3681e055800a472c3090fb9c1e029 (patch) | |
| tree | cc9f152d04fa15a5add1308b742dd8ecceedf4f9 /process.c | |
| parent | 55f6cccecea405e8b18fe83b0707219bff3483cd (diff) | |
| download | ruby-afe0bea5fef3681e055800a472c3090fb9c1e029.tar.gz ruby-afe0bea5fef3681e055800a472c3090fb9c1e029.tar.xz ruby-afe0bea5fef3681e055800a472c3090fb9c1e029.zip | |
* configure.in (ac_cv_sizeof_rlim_t): setup for DJGPP.
* io.c (is_socket, shutdown): define dummy macros for DJGPP.
* process.c: use SIZEOF_RLIM_T instead of HAVE_RLIM_T for DJGPP.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7480 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
| -rw-r--r-- | process.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1941,7 +1941,7 @@ proc_setpriority(obj, which, who, prio) #endif } -#ifdef HAVE_RLIM_T +#if SIZEOF_RLIM_T #if SIZEOF_RLIM_T == SIZEOF_INT # define RLIM2NUM(v) UINT2NUM(v) # define NUM2RLIM(v) NUM2UINT(v) |
