summaryrefslogtreecommitdiff
path: root/bin2c.pl
diff options
context:
space:
mode:
authorhpa <hpa>2003-04-10 06:25:59 +0000
committerhpa <hpa>2003-04-10 06:25:59 +0000
commitab40c49bff59eaea97880151ba736c67f2eb4f86 (patch)
treefd30179b5298e790420cc5a3ee89d867945b09ae /bin2c.pl
parentdb6243d5628dc44a7dcd316ffb5a55a26637ec1b (diff)
downloadsyslinux-ab40c49bff59eaea97880151ba736c67f2eb4f86.tar.gz
Add "use bytes" pragmas
Diffstat (limited to 'bin2c.pl')
-rw-r--r--bin2c.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin2c.pl b/bin2c.pl
index feb3ee0e..c5498f24 100644
--- a/bin2c.pl
+++ b/bin2c.pl
@@ -15,6 +15,8 @@
# bin2c.pl: binary file to C source converter
#
+eval { use bytes; };
+
if ( $#ARGV != 0 ) {
print STDERR "Usage: $0 table_name < input_file > output_file\n";
exit 1;