X7ROOT File Manager
Current Path:
/opt/alt/ruby32/include/ruby
opt
/
alt
/
ruby32
/
include
/
ruby
/
ðŸ“
..
📄
assert.h
(7.55 KB)
📄
atomic.h
(26.18 KB)
ðŸ“
backward
📄
backward.h
(1.12 KB)
📄
config-x86_64.h
(13.77 KB)
📄
config.h
(1.19 KB)
📄
debug.h
(22.59 KB)
📄
defines.h
(2.76 KB)
📄
digest.h
(1.7 KB)
📄
encoding.h
(1.28 KB)
ðŸ“
fiber
📄
intern.h
(2.34 KB)
ðŸ“
internal
ðŸ“
io
📄
io.h
(34.67 KB)
📄
memory_view.h
(10.79 KB)
📄
missing.h
(6.67 KB)
📄
onigmo.h
(43.8 KB)
📄
oniguruma.h
(262 B)
📄
ractor.h
(8.71 KB)
📄
random.h
(11.51 KB)
📄
re.h
(5.44 KB)
📄
regex.h
(1011 B)
📄
ruby.h
(11.46 KB)
📄
st.h
(7.48 KB)
📄
subst.h
(806 B)
📄
thread.h
(9.14 KB)
📄
thread_native.h
(6.57 KB)
📄
util.h
(8.24 KB)
📄
version.h
(4.76 KB)
📄
vm.h
(2.08 KB)
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
Upload File
Create Folder