1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* signal.c (ruby_signal): must define sighandler_t unless

POSIX_SIGNAL.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2011 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2002-01-21 13:59:41 +00:00
parent 59d3fd1832
commit 68f6704478
2 changed files with 6 additions and 1 deletions

View file

@ -281,9 +281,9 @@ rb_gc_mark_trap_list()
#endif /* MACOS_UNUSE_SIGNAL */
}
#ifdef POSIX_SIGNAL
typedef RETSIGTYPE (*sighandler_t)_((int));
#ifdef POSIX_SIGNAL
static sighandler_t
ruby_signal(signum, handler)
int signum;