Help for this page
{ no strict 'refs'; ... } # Previous setting resumes after curlies.
# Name of the function to wrap. my $sub_name = '...'; ... # Replace function with its wrapper. { no warnings 'redefine'; *$sub_glob = $wrapper; }