package Ssbase; require Exporter; use strict; use CGI; no warnings 'uninitialized'; our @ISA = qw(Exporter); our @EXPORT = qw(justReturn); sub justReturn { return 0; } 1;