Blackfin arch: move HI/LO macros into blackfin.h and punt the rest of macros.h as...
[linux-2.6] / arch / blackfin / lib / strcmp.c
1 #include <linux/types.h>
2
3 #define strcmp __inline_strcmp
4 #include <asm/string.h>
5 #undef strcmp
6
7 int strcmp(const char *dest, const char *src)
8 {
9                 return __inline_strcmp(dest, src);
10 }
11