/** * \file * * * \brief Very simple rand() algorithm. * * \author Bernie Innocenti */ #ifndef RAND_H #define RAND_H int rand(void); #endif