summaryrefslogtreecommitdiff
path: root/regress/lib/libm/trivial1/test-fp.pl
blob: 0ebb77fcabfb1f792d59e6de9e2d092acf58d493 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/perl

$a = 113549;

while ($a >= 128) {
        $x = $a % 128;
        $a /= 128;
        print "$x\n";
}