| Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 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 | { | ||||
| Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 9 | return __inline_strcmp(dest, src); |
| Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 10 | } |