40 lines
1.4 KiB
Perl
40 lines
1.4 KiB
Perl
#!/usr/bin/perl -w
|
|
##############################################################################
|
|
# Copyright (C) 2008
|
|
# ProbeStar Telematics, LLC.
|
|
# All Rights Reserved. Proprietary and Confidential.
|
|
#=============================================================================
|
|
# Description
|
|
#-----------------------------------------------------------------------------
|
|
# Details
|
|
##############################################################################
|
|
|
|
use strict;
|
|
|
|
##############################################################################
|
|
# imported packages
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
# global constants
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
# global variables
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
# functions
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
# main body
|
|
##############################################################################
|
|
|
|
sub main {
|
|
|
|
}
|
|
|
|
&main();
|
|
0;
|