summaryrefslogtreecommitdiff
path: root/src/strings/bcopy.c
blob: a464db8e0443415a9795ad89e591541b2f53999e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <string.h>
#include <strings.h>

int bcopy(const void *s1, void *s2, size_t n)
{
	memcpy(s1, s2, n);
	return n;
}

/*
XOPEN(400,700)
*/