PUTCHAR(3) Library Functions Manual PUTCHAR(3)
NAME
putchar — put byte
on stdout stream
SYNOPSIS
#include <stdio.h> int putchar(int c);
DESCRIPTION
The function call putchar ( c ) is
equivalent to putc ( c , stdout ).
RETURN VALUE
Refer to fputc(3) .
ERRORS
Refer to fputc(3) .
EXAMPLES
None.
APPLICATION USAGE
None.
FUTURE DIRECTIONS
None.
SEE ALSO
DERIVATION
Derived from Issue 1 of the SVID.
February 1997 posix.fail