File: XS.pm

package info (click to toggle)
libfile-fcntllock-perl 0.22-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 140 kB
  • ctags: 30
  • sloc: perl: 298; ansic: 116; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 494 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- cperl -*-
#
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
#
# Copyright (C) 2002-2014 Jens Thoms Toerring <jt@toerring.de>


# Alias for package for File::FcntlLock

package File::FcntlLock::XS;

use v5.6.1;
use strict;
use warnings;
use base qw( File::FcntlLock );

our $VERSION = File::FcntlLock->VERSION;

our @EXPORT = @File::FcntlLock::EXPORT;


1;


# Local variables:
# tab-width: 4
# indent-tabs-mode: nil
# End: