summaryrefslogtreecommitdiffstats
path: root/libtommath/gen.pl
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-18 10:23:24 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-18 10:23:24 (GMT)
commit39a4505f7ed7cdb4cbd148aa62775e81ecbe5dc0 (patch)
treef42972f67d7100178a8b287adf3291a8dc886be3 /libtommath/gen.pl
parent205419d4b7c3801fe37ae41bceba18fc3b230308 (diff)
downloadtcl-39a4505f7ed7cdb4cbd148aa62775e81ecbe5dc0.zip
tcl-39a4505f7ed7cdb4cbd148aa62775e81ecbe5dc0.tar.gz
tcl-39a4505f7ed7cdb4cbd148aa62775e81ecbe5dc0.tar.bz2
Fix mp_cnt_lsb() signature, so it matches the signature used in Tcl. Add two missing "static" keywords in tclUnixNotfy.c. Remove some more files in libtommath directory which are not useful for Tcl.
Diffstat (limited to 'libtommath/gen.pl')
-rw-r--r--libtommath/gen.pl17
1 files changed, 0 insertions, 17 deletions
diff --git a/libtommath/gen.pl b/libtommath/gen.pl
deleted file mode 100644
index 7236591..0000000
--- a/libtommath/gen.pl
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/perl -w
-#
-# Generates a "single file" you can use to quickly
-# add the whole source without any makefile troubles
-#
-use strict;
-
-open( OUT, ">mpi.c" ) or die "Couldn't open mpi.c for writing: $!";
-foreach my $filename (glob "bn*.c") {
- open( SRC, "<$filename" ) or die "Couldn't open $filename for reading: $!";
- print OUT "/* Start: $filename */\n";
- print OUT while <SRC>;
- print OUT "\n/* End: $filename */\n\n";
- close SRC or die "Error closing $filename after reading: $!";
-}
-print OUT "\n/* EOF */\n";
-close OUT or die "Error closing mpi.c after writing: $!"; \ No newline at end of file