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

thread_spec.c: use rb_w32_pipe

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58732 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-05-15 11:25:56 +00:00
parent 604e552525
commit dc65024475

View file

@ -7,6 +7,9 @@
#if HAVE_UNISTD_H #if HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>
#endif #endif
#if defined(_WIN32)
#define pipe(p) rb_w32_pipe(p)
#endif
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {