The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# Copyrights 2011-2013 by [Mark Overmeer].
#  For other contributors see ChangeLog.
# See the manual pages for details on the licensing terms.
# Pod stripped from pm file by OODoc 2.01.
use warnings;
use strict;

package POSIX::1003::OS;
use vars '$VERSION';
$VERSION = '0.92';

use base 'POSIX::1003::Module';

# Blocks resp from limits.h
my @constants = qw/
 ARG_MAX NGROUPS_MAX OPEN_MAX TMP_MAX
 /;

# Blocks resp from sys/utsname.h
my @functions = qw/uname/;

our %EXPORT_TAGS =
 ( constants => \@constants
 , functions => \@functions
 );


1;