X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Flibgame%2Frandom.h;h=8c951c31018114f6293b50c02eff0965c3dd6347;hp=366d1ff51db8476257b415c1b4c878ff93ce3dce;hb=6746a99c1d7348748c06d457f8496b4253bb7c84;hpb=da14f69fd95c7bd5a0d70cdf4935af06f1f20a04 diff --git a/src/libgame/random.h b/src/libgame/random.h index 366d1ff5..8c951c31 100644 --- a/src/libgame/random.h +++ b/src/libgame/random.h @@ -1,20 +1,18 @@ -/*********************************************************** -* Rocks'n'Diamonds -- McDuffin Strikes Back! * -*----------------------------------------------------------* -* (c) 1995-98 Artsoft Entertainment * -* Holger Schemel * -* Oststrasse 11a * -* 33604 Bielefeld * -* phone: ++49 +521 290471 * -* email: aeglos@valinor.owl.de * -*----------------------------------------------------------* -* random.h * -***********************************************************/ +// ============================================================================ +// Artsoft Retro-Game Library +// ---------------------------------------------------------------------------- +// (c) 1995-2014 by Artsoft Entertainment +// Holger Schemel +// info@artsoft.org +// http://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