This repository has been archived on 2026-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ubports_kernel_google_msm/arch/blackfin/lib/strcmp.c
2007-07-12 22:58:21 +08:00

11 lines
182 B
C

#include <linux/types.h>
#define strcmp __inline_strcmp
#include <asm/string.h>
#undef strcmp
int strcmp(const char *dest, const char *src)
{
return __inline_strcmp(dest, src);
}