diff --git a/src/fastcmp.h b/src/fastcmp.h index 91ac07211..e2d53710e 100644 --- a/src/fastcmp.h +++ b/src/fastcmp.h @@ -7,7 +7,7 @@ extern "C" { // returns false if s != c // returns true if s == c -FUNCINLINE static ATTRINLINE PUREFUNC boolean fasticmp(const char *s, const char *c) +FUNCINLINE static ATTRINLINE boolean fasticmp(const char *s, const char *c) { for (; *s && toupper(*s) == toupper(*c); s++, c++) ; return (*s == *c); // make sure both strings ended