summaryrefslogtreecommitdiff
path: root/src/strings/bcopy.c
blob: 3cc0ac6b201a37576eab5e3323c20c29af03dfa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#if 0

#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)
*/


#endif