mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-11 06:55:01 +00:00
2f09509630
* userconf R2_VERSION * Implement some more # hashing algorithms
19 lines
275 B
Plaintext
19 lines
275 B
Plaintext
#ifndef _INCLUDE_R_CONFIGURE_H_
|
|
#define _INCLUDE_R_CONFIGURE_H_
|
|
|
|
#ifdef LIL_ENDIAN
|
|
#undef LIL_ENDIAN
|
|
#endif
|
|
#define LIL_ENDIAN @LIL_ENDIAN@
|
|
|
|
#ifdef PREFIX
|
|
#undef PREFIX
|
|
#endif
|
|
#define PREFIX "@PREFIX@"
|
|
|
|
#define R2_VERSION "@VERSION@"
|
|
|
|
#define CPU_ENDIAN @BIG_ENDIAN@
|
|
|
|
#endif
|