2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00
fhem-mirror/fhem/FHEM/myUtilsTemplate.pm
rudolfkoenig 5fc51e39ad myUtilsTemplate.pm: remove "use POSIX" (Forum #109450)
git-svn-id: https://svn.fhem.de/fhem/trunk@21509 2b470e98-0d58-463d-a4d8-8e2adae1ed80
2020-03-25 11:20:51 +00:00

22 lines
330 B
Perl

##############################################
# $Id$
#
# Save this file as 99_myUtils.pm, and create your own functions in the new
# file. They are then available in every Perl expression.
package main;
use strict;
use warnings;
sub
myUtils_Initialize($$)
{
my ($hash) = @_;
}
# Enter you functions below _this_ line.
1;