libspf2 1.2.11
memcmp.c
Go to the documentation of this file.
1#warning "Sorry, you will have to find a working memcmp on your own"
2
3#include "config.h"
4#include <sys/types.h>
5
6inline int
7rpl_memcmp(b1, b2, len)
8 void *b1;
9 void *b2;
10 size_t len;
11{
12 return memcmp(b1, b2, len);
13}
int rpl_memcmp(void *b1, void *b2, size_t len)
Definition memcmp.c:7