⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.94
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
src
/
libmemcached-1.0.18
/
m4
/
View File Name :
ax_endian.m4
# https://github.com/BrianAker/ddm4 # =========================================================================== # # SYNOPSIS # # AX_ENDIAN() # # DESCRIPTION # # Generate to defines describing endian. # # LICENSE # # Copyright (c) 2012 Brian Aker <brian@tangent.org> # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice # and this notice are preserved. This file is offered as-is, without any # warranty. #serial 1 AC_DEFUN([AX_ENDIAN],[ AC_C_BIGENDIAN([ AC_DEFINE([WORDS_BIGENDIAN],[1],[machine is big-endian]) AC_DEFINE([ENDIAN_BIG],[1],[machine is big-endian]) AC_DEFINE([ENDIAN_LITTLE],[0],[machine is little-endian])],[ ],[ AC_DEFINE([WORDS_BIGENDIAN],[0],[machine is big-endian]) AC_DEFINE([ENDIAN_BIG],[0],[machine is big-endian]) AC_DEFINE([ENDIAN_LITTLE],[1],[machine is little-endian]) ],[ AC_MSG_ERROR([unable to determine endian]) ]) ])