xref: /openbsd/gnu/usr.bin/perl/haiku/Haiku/Haiku.pm (revision 4cfece93)
1package Haiku;
2
3BEGIN {
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.35';
12    $XS_VERSION = $VERSION;
13    $VERSION = eval $VERSION;
14
15    @EXPORT = qw(
16    );
17    @EXPORT_OK = qw(
18    );
19}
20
21bootstrap Haiku;
22
231;
24
25__END__
26
27=head1 NAME
28
29Haiku - Interfaces to some Haiku API Functions
30
31=head1 DESCRIPTION
32
33The 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
41Similar to printf, but prints to system debug output.
42
43=item Haiku::debugger(FORMAT,...)
44
45Drops the program into the debugger. The printf like arguments define the
46debugger message.
47
48=item Haiku::ktrace_printf(FORMAT,...)
49
50Similar to printf, but prints to a kernel tracing entry.
51
52=back
53
54=cut
55