/*** Copyright 2004, Axel DΓΆrfler, axeld@pinc-software.de. All rights reserved.** Distributed under the terms of the MIT License.*/#include <sys/types.h>#include <string.h>#ifdef bcmp# undef bcmp#endifint bcmp(void const *a, const void *b, size_t bytes);intbcmp(void const *a, const void *b, size_t bytes){return memcmp(a, b, bytes);}