aboutsummaryrefslogtreecommitdiff
path: root/autoconf/m4/rand48.m4
diff options
context:
space:
mode:
Diffstat (limited to 'autoconf/m4/rand48.m4')
-rw-r--r--autoconf/m4/rand48.m412
1 files changed, 0 insertions, 12 deletions
diff --git a/autoconf/m4/rand48.m4 b/autoconf/m4/rand48.m4
deleted file mode 100644
index 56705d85c9c5..000000000000
--- a/autoconf/m4/rand48.m4
+++ /dev/null
@@ -1,12 +0,0 @@
-#
-# This function determins if the the srand48,drand48,lrand48 functions are
-# available on this platform.
-#
-AC_DEFUN([AC_FUNC_RAND48],[
-AC_SINGLE_CXX_CHECK([ac_cv_func_rand48],
- [srand48/lrand48/drand48], [<stdlib.h>],
- [srand48(0);lrand48();drand48();])
-if test "$ac_cv_func_rand48" = "yes" ; then
-AC_DEFINE([HAVE_RAND48],1,[Define to 1 if srand48/lrand48/drand48 exist in <stdlib.h>])
-fi
-])