1/*
2** Copyright 2004, Axel D��rfler, axeld@pinc-software.de. All rights reserved.
3** Distributed under the terms of the MIT License.
4*/
5
6
7#include <sys/types.h>
8#include <string.h>
9
10
11#ifdef bcmp
12#	undef bcmp
13#endif
14
15int bcmp(void const *a, const void *b, size_t bytes);
16
17int
18bcmp(void const *a, const void *b, size_t bytes)
19{
20	return memcmp(a, b, bytes);
21}
22
23