diff options
author | Parménides GV <parmegv@sdf.org> | 2014-04-07 20:43:34 +0200 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2014-04-08 11:43:27 +0200 |
commit | c206a91d320995f37f8abb33188bfd384249da3d (patch) | |
tree | 10a7d8a9dd7f24437ac4851b8d01edbd5dd3ee3b /lzo/util/notime.pl | |
parent | 910b0e1746ab3f63e63808b198ad51fec5b635e5 (diff) |
Next step: compile jni sources correctly.
Diffstat (limited to 'lzo/util/notime.pl')
-rw-r--r-- | lzo/util/notime.pl | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/lzo/util/notime.pl b/lzo/util/notime.pl deleted file mode 100644 index 9d8a6d14..00000000 --- a/lzo/util/notime.pl +++ /dev/null @@ -1,26 +0,0 @@ -#! /usr/bin/perl -## -## vi:ts=4 -## -##---------------------------------------------------------------------------## -## -## Author: -## Markus F.X.J. Oberhumer <markus@oberhumer.com> -## -## Description: -## Remove timing values from a table created by table.pl -## -## Copyright (C) 1996-2011 Markus Franz Xaver Johannes Oberhumer -## -##---------------------------------------------------------------------------## - - -while (<>) { - if (substr($_,56) =~ /^\s+[\d\.]+\s+[\d\.]+\s+\|\s*\n$/) { - substr($_,56) = " 0.000 0.000 |\n"; - } - print; -} - -exit(0); - |