summaryrefslogtreecommitdiff
path: root/beagle/debian-rfs/usr/share/perl/5.10.1/locale.pm
blob: 4c30eda40b9ee33d4e8e856a77142590db98f869 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package locale;

our $VERSION = '1.00';

$locale::hint_bits = 0x4;

sub import {
    $^H |= $locale::hint_bits;
}

sub unimport {
    $^H &= ~$locale::hint_bits;
}

1;