Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 20f4d6c3a2a23c5d7d9cc7f42fbb943ca7a03d1f authored by Linus Torvalds on 23 February 2009, 04:19:40 UTC
Linux 2.6.29-rc6
Tip revision: 20f4d6c
strcpy.c
/*
 * Provide symbol in case str func is not inlined.
 *
 * Copyright (c) 2006-2007 Analog Devices Inc.
 *
 * Licensed under the GPL-2 or later.
 */

#define strcpy __inline_strcpy
#include <asm/string.h>
#undef strcpy

#include <linux/module.h>

char *strcpy(char *dest, const char *src)
{
	return __inline_strcpy(dest, src);
}
EXPORT_SYMBOL(strcpy);
back to top