source: trunk/minix/lib/other/bcmp.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 242 bytes
Line 
1#include <lib.h>
2/* bcmp - Berklix equivalent of memcmp */
3
4#include <string.h>
5
6int bcmp(s1, s2, length) /* == 0 or != 0 for equality and inequality */
7_CONST void *s1;
8_CONST void *s2;
9size_t length;
10{
11 return(memcmp(s1, s2, length));
12}
Note: See TracBrowser for help on using the repository browser.