Fix ROTR conflict

This commit is contained in:
Aaron Tulino (Aaronjamt)
2025-12-21 03:49:45 -07:00
parent 16ebc6c7f7
commit 2197d9fc9f
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -94,8 +94,8 @@ extern bool g_tearoff_enabled;
//#define RAMFUNC __attribute((long_call, section(".ramfunc")))
#define RAMFUNC __attribute((long_call, section(".ramfunc"))) __attribute__((target("arm")))
#ifndef ROTR
# define ROTR(x,n) (((uintmax_t)(x) >> (n)) | ((uintmax_t)(x) << ((sizeof(x) * 8) - (n))))
#ifndef PM3_ROTR
# define PM3_ROTR(x,n) (((uintmax_t)(x) >> (n)) | ((uintmax_t)(x) << ((sizeof(x) * 8) - (n))))
#endif
#ifndef PM3_ROTL