Upgrade to File::Fetch 0.20
[p5sagit/p5-mst-13.2.git] / haiku / Haiku / Haiku.pm
1 package Haiku;
2
3 BEGIN {
4     use strict;
5     use vars qw|$VERSION $XS_VERSION @ISA @EXPORT @EXPORT_OK|;
6
7     require Exporter;
8     require DynaLoader;
9
10     @ISA = qw|Exporter DynaLoader|;
11     $VERSION = '0.34';
12     $XS_VERSION = $VERSION;
13     $VERSION = eval $VERSION;
14
15     @EXPORT = qw(
16     );
17     @EXPORT_OK = qw(
18     );
19 }
20
21 bootstrap Haiku;
22
23 1;
24
25 __END__
26
27 =head1 NAME
28
29 Haiku - Interfaces to some Haiku API Functions
30
31 =head1 DESCRIPTION
32
33 The Haiku module contains functions to access Haiku APIs.
34
35 =head2 Alphabetical Listing of Haiku Functions
36
37 =over
38
39 =item Haiku::debug_printf(FORMAT,...)
40
41 Similar to printf, but prints to system debug output.
42
43 =item Haiku::debugger(FORMAT,...)
44
45 Drops the program into the debugger. The printf like arguments define the
46 debugger message.
47
48 =item Haiku::ktrace_printf(FORMAT,...)
49
50 Similar to printf, but prints to a kernel tracing entry.
51
52 =back
53
54 =cut