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

@ -29,7 +29,7 @@
static char SCCSid[] = "@(#)alloca.c 1.1"; /* for the "what" utility */
#endif
#include "ruby/3/config.h"
#include "ruby/impl/config.h"
#define X3J11 1 /* config.h should contain void if needed */
#ifdef C_ALLOCA

View file

@ -11,7 +11,7 @@
* Return fd2 if all went well; return BADEXIT otherwise.
*/
#include "ruby/3/config.h"
#include "ruby/impl/config.h"
#if defined(HAVE_FCNTL)
# include <fcntl.h>

View file

@ -1,4 +1,4 @@
#include "ruby/3/config.h"
#include "ruby/impl/config.h"
#include "ruby/ruby.h"
#if defined _WIN32

View file

@ -18,7 +18,7 @@ isinf(double n)
#else
#include "ruby/3/config.h"
#include "ruby/impl/config.h"
#if defined(HAVE_FINITE) && defined(HAVE_ISNAN)

View file

@ -9,7 +9,7 @@ reference - Haruhiko Okumura: C-gengo niyoru saishin algorithm jiten
/***********************************************************
gamma.c -- Gamma function
***********************************************************/
#include "ruby/3/config.h"
#include "ruby/impl/config.h"
#include "ruby/missing.h"
#include <math.h>
#include <errno.h>