Mercurial > dropbear
view libtommath/gen.pl @ 1458:bdd3802c8ac6
fix format
Argument no. 3 nominally inconsistent with format (int vs. unsigned int)
author | Francois Perrad <francois.perrad@gadz.org> |
---|---|
date | Sat, 12 Aug 2017 20:51:58 +0200 |
parents | 60fc6476e044 |
children | 8bba51a55704 |
line wrap: on
line source
#!/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: $!"; system('perl -pli -e "s/\s*$//" mpi.c');