00001 #warning "Sorry, you will have to find a working memcmp on your own" 00002 00003 #include "config.h" 00004 #include <sys/types.h> 00005 00006 inline int 00007 rpl_memcmp(b1, b2, len) 00008 void *b1; 00009 void *b2; 00010 size_t len; 00011 { 00012 return memcmp(b1, b2, len); 00013 }