improved virtual buttons for touch devices (Android)
[rocksndiamonds.git] / src / libgame / random.h
index 366d1ff51db8476257b415c1b4c878ff93ce3dce..8c951c31018114f6293b50c02eff0965c3dd6347 100644 (file)
@@ -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