summaryrefslogtreecommitdiff
path: root/firmware/asm/strlen.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/asm/strlen.c')
-rw-r--r--firmware/asm/strlen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/asm/strlen.c b/firmware/asm/strlen.c
index 649df6764b..d5326584b5 100644
--- a/firmware/asm/strlen.c
+++ b/firmware/asm/strlen.c
@@ -37,7 +37,7 @@ QUICKREF
37#include <limits.h> 37#include <limits.h>
38 38
39#define LBLOCKSIZE (sizeof (long)) 39#define LBLOCKSIZE (sizeof (long))
40#define UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1)) 40#define ROCKBOX_UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1))
41 41
42#if LONG_MAX == 2147483647L 42#if LONG_MAX == 2147483647L
43#define DETECTNULL(X) (((X) - 0x01010101) & ~(X) & 0x80808080) 43#define DETECTNULL(X) (((X) - 0x01010101) & ~(X) & 0x80808080)
@@ -73,7 +73,7 @@ _DEFUN (strlen, (str),
73 _CONST char *start = str; 73 _CONST char *start = str;
74 unsigned long *aligned_addr; 74 unsigned long *aligned_addr;
75 75
76 if (!UNALIGNED (str)) 76 if (!ROCKBOX_UNALIGNED (str))
77 { 77 {
78 /* If the string is word-aligned, we can check for the presence of 78 /* If the string is word-aligned, we can check for the presence of
79 a null in each word-sized block. */ 79 a null in each word-sized block. */