X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Frandom.h;h=63a54c375e093bbaf1c1ad42e4129806dd44665e;hb=c4621f6e17b3806b7edc0ab50e72353cb991842e;hp=540bc6679c885cf910b8f0f7418ad2493b7fdfea;hpb=c9433eab5c4317ed4f89164b386a7d33562e29be;p=rocksndiamonds.git diff --git a/src/libgame/random.h b/src/libgame/random.h index 540bc667..63a54c37 100644 --- a/src/libgame/random.h +++ b/src/libgame/random.h @@ -1,20 +1,18 @@ -/*********************************************************** -* Artsoft Retro-Game Library * -*----------------------------------------------------------* -* (c) 1994-2002 Artsoft Entertainment * -* Holger Schemel * -* Detmolder Strasse 189 * -* 33604 Bielefeld * -* Germany * -* e-mail: info@artsoft.org * -*----------------------------------------------------------* -* random.h * -***********************************************************/ +// ============================================================================ +// Artsoft Retro-Game Library +// ---------------------------------------------------------------------------- +// (c) 1995-2014 by Artsoft Entertainment +// Holger Schemel +// info@artsoft.org +// https://www.artsoft.org/ +// ---------------------------------------------------------------------------- +// random.h +// ============================================================================ #ifndef RANDOM_H #define RANDOM_H -void srandom_linux_libc(unsigned int); -long int random_linux_libc(void); +void srandom_linux_libc(int, unsigned int); +int random_linux_libc(int); #endif