summaryrefslogtreecommitdiff
path: root/demos/perl
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2003-08-19 01:47:30 +0200
committerKevin Ryde <user42@zip.com.au>2003-08-19 01:47:30 +0200
commit27e3c1dde4947989905f388cc02335e0af6bf8f1 (patch)
treea7fc236edffa1b36b2e66b62e73c384cd667d765 /demos/perl
parente480f7b62142204c9760c85e2b9d74c3fcd69243 (diff)
downloadgmp-27e3c1dde4947989905f388cc02335e0af6bf8f1.tar.gz
* demos/perl/GMP.xs, demos/perl/GMP.pm, demos/perl/GMP/Rand.pm,
demos/perl/test.pl: Add gmp_urandomb_ui, gmp_urandomm_ui.
Diffstat (limited to 'demos/perl')
-rw-r--r--demos/perl/GMP/Rand.pm8
1 files changed, 5 insertions, 3 deletions
diff --git a/demos/perl/GMP/Rand.pm b/demos/perl/GMP/Rand.pm
index d188c5f4d..377ac18ae 100644
--- a/demos/perl/GMP/Rand.pm
+++ b/demos/perl/GMP/Rand.pm
@@ -1,6 +1,6 @@
# GMP random numbers module.
-# Copyright 2001 Free Software Foundation, Inc.
+# Copyright 2001, 2003 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
@@ -26,8 +26,10 @@ require GMP;
require Exporter;
@ISA = qw(GMP Exporter);
@EXPORT = qw();
-%EXPORT_TAGS = ('all' => [qw(randstate mpf_urandomb mpz_rrandomb
- mpz_urandomb mpz_urandomm)]);
+%EXPORT_TAGS = ('all' => [qw(
+ randstate mpf_urandomb mpz_rrandomb
+ mpz_urandomb mpz_urandomm gmp_urandomb_ui
+ gmp_urandomm_ui)]);
Exporter::export_ok_tags('all');
1;
__END__