diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2000-05-25 15:45:33 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2000-05-25 15:45:33 +0000 |
commit | 9b2007c0cf7fc6ed4b761ebf86036eaeeb0fbf14 (patch) | |
tree | 5d4dcbd838ee3f855ca7cd9c4a3d7be8e0c781e7 /random2.c | |
parent | bcd35bd9d03e6ab9c6c07892d00b238443ce81ad (diff) | |
download | mpfr-9b2007c0cf7fc6ed4b761ebf86036eaeeb0fbf14.tar.gz |
removed 'inline' (does not compile on Alpha with gcc 2.8.1)
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@563 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'random2.c')
-rw-r--r-- | random2.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ MA 02111-1307, USA. */ #if defined (__hpux) || defined (__alpha) || defined (__svr4__) || defined (__SVR4) /* HPUX lacks random(). DEC OSF/1 1.2 random() returns a double. */ long mrand48 (); -static inline long +static long random () { return mrand48 (); |