chiark / gitweb /
tcmdifgen: Replace deprecated `use IO;' with `use IO::File'.
[chiark-tcl.git] / base / tcmdifgen
index 16cc78de2162dc71227058bd19704445d3ad95bd..c85161d0e93d3e56b90e19e88ba3c42a27252a3b 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl
 
 # code generator to help with writing Tcl extensions
-# Copyright 2006 Ian Jackson
+# Copyright 2006-2012 Ian Jackson
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License as
@@ -14,9 +14,7 @@
 # General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-# 02110-1301, USA.
+# along with this library; if not, see <http://www.gnu.org/licenses/>.
 
 
 # Input format is line-based, ws-significant, offside rule (some kind
 #  and the two predefined types `int' (C `int') and `obj' (Tcl_Obj*,
 #  unmodified.)  The corresponding definitions are in tcmdiflib.c.
 
-use IO;
+use IO::File;
 use Data::Dumper;
 
 parse('builtins','DATA');