drm/radeon/kms: memset the allocated framebuffer before using it.
[linux-2.6/mini2440.git] / arch / blackfin / lib / strcpy.c
blob2a8836b1f4d37abf3700693d39f8cccbf93c2fe7
1 /*
2 * Provide symbol in case str func is not inlined.
4 * Copyright (c) 2006-2007 Analog Devices Inc.
6 * Licensed under the GPL-2 or later.
7 */
9 #define strcpy __inline_strcpy
10 #include <asm/string.h>
11 #undef strcpy
13 #include <linux/module.h>
15 char *strcpy(char *dest, const char *src)
17 return __inline_strcpy(dest, src);
19 EXPORT_SYMBOL(strcpy);