summaryrefslogtreecommitdiff
path: root/random2.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2000-05-25 15:45:33 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2000-05-25 15:45:33 +0000
commit9b2007c0cf7fc6ed4b761ebf86036eaeeb0fbf14 (patch)
tree5d4dcbd838ee3f855ca7cd9c4a3d7be8e0c781e7 /random2.c
parentbcd35bd9d03e6ab9c6c07892d00b238443ce81ad (diff)
downloadmpfr-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/random2.c b/random2.c
index cd31df235..24209aaf6 100644
--- a/random2.c
+++ b/random2.c
@@ -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 ();