mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* error.c: Fix build error for win32. This regression was
introduced by r30271. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30277 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1ff6a1953c
commit
12b8ff1f46
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Dec 21 01:18:06 2010 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* error.c: Fix build error for win32. This regression was
|
||||
introduced by r30271.
|
||||
|
||||
Tue Dec 21 00:59:40 2010 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* thread.c (thread_cleanup_func): Moved interrupted_lock
|
||||
|
|
8
error.c
8
error.c
|
@ -25,6 +25,14 @@
|
|||
#define EXIT_SUCCESS 0
|
||||
#endif
|
||||
|
||||
#ifndef WIFEXITED
|
||||
#define WIFEXITED(status) 1
|
||||
#endif
|
||||
|
||||
#ifndef WEXITSTATUS
|
||||
#define WEXITSTATUS(status) (status)
|
||||
#endif
|
||||
|
||||
extern const char ruby_description[];
|
||||
|
||||
static const char *
|
||||
|
|
Loading…
Reference in a new issue