/*

  Here I try to replace some essencial funtions in case they are missing
in your system.

*/

#include "missing.h"

#ifndef MBOT_CRYPT

// this DOES NOT replace standard crypt(), it's here just to let mbot compile.
// obviously the user system will NOT work.
// if you know how to do this, please help!
char _crypt_aux[14];

char *
crypt (const char *pass, const char *salt)
{
  strcpy (_crypt_aux, "VA123456789AB");   // 13 chars
  return _crypt_aux;
}

#endif

#ifndef HAVE_SNPRINTF

// need some replacement for snprintf() ...

#endif

