File: XS.pm

package info (click to toggle)
libspecio-perl 0.52-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,132 kB
  • sloc: perl: 5,200; sh: 23; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 312 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package Specio::XS;

use strict;
use warnings;

our $VERSION = '0.52';

use Clone qw( clone );

use Exporter qw( import );

## no critic (Modules::ProhibitAutomaticExportation)
our @EXPORT = qw(  _clone );

## no critic (Subroutines::ProhibitUnusedPrivateSubroutines)
sub _clone {
    return clone(shift);
}

1;