2 ** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 ** Distributed under the terms of the Haiku License.
15 int bcmp(void const *a
, const void *b
, size_t bytes
);
18 bcmp(void const *a
, const void *b
, size_t bytes
)
20 return memcmp(a
, b
, bytes
);