ERROR_$PRINT Domain/OS ERROR_$PRINT
NAME
error_$print - print an error message
SYNOPSIS (C)
#include <apollo/base.h>
#include <apollo/error.h>
void error_$print(status_$t &status)
SYNOPSIS (Pascal)
%include '/sys/ins/base.ins.pas';
%include '/sys/ins/error.ins.pas';
procedure error_$print(in status: status_$t);
SYNOPSIS (FORTRAN)
%include '/sys/ins/base.ins.ftn'
%include '/sys/ins/error.ins.ftn'
integer*4 status
call error_$print(status)
DESCRIPTION
Error_$print writes the predefined text associated with the completion
status passed in status to the error output stream, usually ios_$errout.
If text can't be found for some field in status, then error_$print will
print what it can find followed by status in hexadecimal.
status
The completion status from a Domain/OS call.
SEE ALSO
error_$print_format, error_$print_name, error_$std_format.