Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 216.73.216.155
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cpanel /
ea-ruby27 /
root /
usr /
include /
ruby /
Delete
Unzip
Name
Size
Permission
Date
Action
backward
[ DIR ]
drwxr-xr-x
2024-03-05 23:46
assert.h
1.48
KB
-rw-r--r--
2023-03-30 12:34
backward.h
2.25
KB
-rw-r--r--
2023-03-30 12:34
config-x86_64.h
12.92
KB
-rw-r--r--
2023-04-05 15:22
config.h
1.7
KB
-rw-r--r--
2023-04-05 15:24
debug.h
4.32
KB
-rw-r--r--
2023-03-30 12:34
defines.h
12.94
KB
-rw-r--r--
2023-03-30 12:34
digest.h
1.48
KB
-rw-r--r--
2023-04-05 15:24
encoding.h
17.78
KB
-rw-r--r--
2023-03-30 12:34
intern.h
57.21
KB
-rw-r--r--
2023-03-30 12:34
io.h
5.18
KB
-rw-r--r--
2023-03-30 12:34
missing.h
5.28
KB
-rw-r--r--
2023-03-30 12:34
onigmo.h
43.61
KB
-rw-r--r--
2023-03-30 12:34
oniguruma.h
262
B
-rw-r--r--
2023-03-30 12:34
re.h
1.4
KB
-rw-r--r--
2023-03-30 12:34
regex.h
777
B
-rw-r--r--
2023-03-30 12:34
ruby.h
97.17
KB
-rw-r--r--
2023-03-30 12:34
st.h
7.39
KB
-rw-r--r--
2023-03-30 12:34
subst.h
374
B
-rw-r--r--
2023-03-30 12:34
thread.h
1.32
KB
-rw-r--r--
2023-03-30 12:34
thread_native.h
1.3
KB
-rw-r--r--
2023-03-30 12:34
util.h
1.84
KB
-rw-r--r--
2023-03-30 12:34
version.h
1.81
KB
-rw-r--r--
2023-03-30 12:34
vm.h
1.52
KB
-rw-r--r--
2023-03-30 12:34
Save
Rename
/* * This config.h is a wrapper include file for the original ruby/config.h, * which has been renamed to ruby/config-<arch>.h. There are conflicts for the * original ruby/config.h on multilib systems, which result from arch-specific * configuration options. Please do not use the arch-specific file directly. */ /* * This wrapped is addpated from SDL's one: * http://pkgs.fedoraproject.org/cgit/SDL.git/tree/SDL_config.h */ #ifdef ruby_config_wrapper_h #error "ruby_config_wrapper_h should not be defined!" #endif #define ruby_config_wrapper_h #if defined(__i386__) #include "ruby/config-i386.h" #elif defined(__ia64__) #include "ruby/config-ia64.h" #elif defined(__powerpc64__) #include <endian.h> #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ #include "ruby/config-ppc64.h" #else #include "ruby/config-ppc64le.h" #endif #elif defined(__powerpc__) #include "ruby/config-ppc.h" #elif defined(__s390x__) #include "ruby/config-s390x.h" #elif defined(__s390__) #include "ruby/config-s390.h" #elif defined(__x86_64__) #include "ruby/config-x86_64.h" #elif defined(__arm__) #include "ruby/config-arm.h" #elif defined(__alpha__) #include "ruby/config-alpha.h" #elif defined(__sparc__) && defined (__arch64__) #include "ruby/config-sparc64.h" #elif defined(__sparc__) #include "ruby/config-sparc.h" #elif defined(__aarch64__) #include "ruby/config-aarch64.h" #elif defined(__mips64) && defined(__MIPSEL__) #include "ruby/config-mips64el.h" #elif defined(__mips64) #include "ruby/config-mips64.h" #elif defined(__mips) && defined(__MIPSEL__) #include "ruby/config-mipsel.h" #elif defined(__mips) #include "ruby/config-mips.h" #else #error "The ruby-devel package is not usable with the architecture." #endif #undef ruby_config_wrapper_h