Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 161291396e76e0832c08f617eb9bd364d1648148 authored by Linus Torvalds on 11 October 2009, 21:43:56 UTC
Linux 2.6.32-rc4
Tip revision: 1612913
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