Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6
[sfrench/cifs-2.6.git] / 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 }