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

sed -i s|ruby/3|ruby/impl|g

This shall fix compile errors.
This commit is contained in:
卜部昌平 2020-05-04 15:35:26 +09:00
parent dca234a5dc
commit d7f4d732c1
Notes: git 2020-05-11 09:24:43 +09:00
330 changed files with 43662 additions and 43662 deletions

View file

@ -22,22 +22,22 @@
* @note Functions and structs defined in this header file are not
* necessarily ruby-specific. They don't need ::VALUE etc.
*/
#include "ruby/3/config.h"
#include "ruby/impl/config.h"
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h> /* for NFDBITS (BSD Net/2) */
#endif
#include "ruby/3/dllexport.h"
#include "ruby/impl/dllexport.h"
/* thread.c */
#if defined(NFDBITS) && defined(HAVE_RB_FD_INIT)
# include "ruby/3/intern/select/largesize.h"
# include "ruby/impl/intern/select/largesize.h"
#elif defined(_WIN32)
# include "ruby/3/intern/select/win32.h"
# include "ruby/impl/intern/select/win32.h"
# define rb_fd_resize(n, f) ((void)(f))
#else
# include "ruby/3/intern/select/posix.h"
# include "ruby/impl/intern/select/posix.h"
# define rb_fd_resize(n, f) ((void)(f))
#endif