#ifndef _H_MISSING #define _H_MISSING #include "system.h" #ifndef MBOT_CRYPT char *crypt (const char *, const char *); #endif #ifndef HAVE_SNPRINTF int snprintf ( char *str, size_t n, const char *format, ... ); //#error "your system doesn't have snprintf() - sorry" #endif #ifndef HAVE_MEMCPY # define memcpy(d, s, n) bcopy ((void*)(s), (void *)(d), (n)) # define memmove(d, s, n) bcopy ((void *)(s), (void *)(d), (n)) #endif #endif