NAME

write - print a picture record


SYNOPSIS

write


DESCRIPTION

Write to a file. This uses file descriptors such as those obtained by calling POSIX::open.

	$fd = POSIX::open( "foo", &POSIX::O_WRONLY );
	$buf = "hello";
	$bytes = POSIX::write( $b, $buf, 5 );

Returns undef on failure.


CLASSES


POSIX::SigAction