SM0 She11
Path:
/
/
opt
/
alt
/
ruby32
/
include
/
ruby
Full Path (server): /opt/alt/ruby32/include/ruby
Create Fil3
Upl04d Fil3
📄 assert.h
[E]
[D]
[R]
📄 atomic.h
[E]
[D]
[R]
📁 backward
Open
[D]
[R]
📄 backward.h
[E]
[D]
[R]
📄 config-x86_64.h
[E]
[D]
[R]
📄 config.h
[E]
[D]
[R]
📄 debug.h
[E]
[D]
[R]
📄 defines.h
[E]
[D]
[R]
📄 digest.h
[E]
[D]
[R]
📄 encoding.h
[E]
[D]
[R]
📁 fiber
Open
[D]
[R]
📄 intern.h
[E]
[D]
[R]
📁 internal
Open
[D]
[R]
📁 io
Open
[D]
[R]
📄 io.h
[E]
[D]
[R]
📄 memory_view.h
[E]
[D]
[R]
📄 missing.h
[E]
[D]
[R]
📄 onigmo.h
[E]
[D]
[R]
📄 oniguruma.h
[E]
[D]
[R]
📄 ractor.h
[E]
[D]
[R]
📄 random.h
[E]
[D]
[R]
📄 re.h
[E]
[D]
[R]
📄 regex.h
[E]
[D]
[R]
📄 ruby.h
[E]
[D]
[R]
📄 st.h
[E]
[D]
[R]
📄 subst.h
[E]
[D]
[R]
📄 thread.h
[E]
[D]
[R]
📄 thread_native.h
[E]
[D]
[R]
📄 util.h
[E]
[D]
[R]
📄 version.h
[E]
[D]
[R]
📄 vm.h
[E]
[D]
[R]
Editing: config.h
/* * Kluge to support multilib installation of both 32- and 64-bit RPMS: * we need to arrange that header files that appear in both RPMs are * identical. Hence, this file is architecture-independent and calls * in an arch-dependent file that will appear in just one RPM. * * To avoid breaking arches not explicitly supported by Red Hat, we * use this indirection file *only* on known multilib arches. * * We pay attention to include _only_ the original multilib-unclean * header file. Including any other system-header file could cause * unpredictable include-ordering issues (rhbz#1412274, comment #16). * * Note: this may well fail if user tries to use gcc's -I- option. * But that option is deprecated anyway. */ #if defined(__x86_64__) #include "config-x86_64.h" #elif defined(__i386__) #include "config-i386.h" #elif defined(__ppc64__) || defined(__powerpc64__) #include "config-ppc64.h" #elif defined(__ppc__) || defined(__powerpc__) #include "config-ppc.h" #elif defined(__s390x__) #include "config-s390x.h" #elif defined(__s390__) #include "config-s390.h" #elif defined(__sparc__) && defined(__arch64__) #include "config-sparc64.h" #elif defined(__sparc__) #include "config-sparc.h" #endif
Save