source: trunk/essentials/dev-lang/perl/lib/Thread.pm@ 3951

Last change on this file since 3951 was 3181, checked in by bird, 19 years ago

perl 5.8.8

File size: 9.9 KB
Line 
1package Thread;
2
3use strict;
4
5our($VERSION, $ithreads, $othreads);
6
7BEGIN {
8 $VERSION = '2.00';
9 use Config;
10 $ithreads = $Config{useithreads};
11 $othreads = $Config{use5005threads};
12}
13
14require Exporter;