aboutsummaryrefslogtreecommitdiffstats
path: root/missing_d/memcpy.c
blob: 568a006a09442f6e6bd0c8f7845893b3bbba18aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * memcpy --- copy strings.
 *
 * We supply this routine for those systems that aren't standard yet.
 */

char *
memcpy (dest, src, l)
char *dest, *src;
int l;
{
	char *ret = dest;

	while (l--)
		*dest++ = *src++;

	return ret;
}
* | Make building a working tarball work again.Arnold D. Robbins2016-01-281-1/+1 |/ * Fix build ordering issues.Arnold D. Robbins2015-10-161-6/+9 * Rework zOS patches; keep separate from autotools.Arnold D. Robbins2015-08-021-1/+4 * Take --program-prefix into account for the installation symlinks.Arnold D. Robbins2015-04-301-3/+7 * Fix efence target, whitepsace in ChangeLog.Arnold D. Robbins2015-04-121-1/+1 * OS/2 fixes.Arnold D. Robbins2014-11-11