lzo: update to 2.09
[tomato.git] / release / src / router / lzo / util / notime.pl
bloba4e92b0a5b4e740eed9a16b8b2ecfcc100149b61
1 #! /usr/bin/perl
2 ## vim:set ts=4 sw=4 et: -*- coding: utf-8 -*-
3 ##
4 ##---------------------------------------------------------------------------##
5 ##
6 ## Author:
7 ## Markus F.X.J. Oberhumer <markus@oberhumer.com>
8 ##
9 ## Description:
10 ## Remove timing values from a table created by table.pl
12 ## Copyright (C) 1996-2015 Markus Franz Xaver Johannes Oberhumer
14 ##---------------------------------------------------------------------------##
17 while (<>) {
18 if (substr($_,56) =~ /^\s+[\d\.]+\s+[\d\.]+\s+\|\s*\n$/) {
19 substr($_,56) = " 0.000 0.000 |\n";
21 print;
24 exit(0);