DBERR
SUMMARY
dberr(code)
int code;
ARGUMENTS
code The specific db_VISTA error code as defined in header file
"vista.h"
DESCRIPTION
This function reports all db_VISTA user and system errors.
The sourse to function dberr has been provided in file "dberr.c" and can be
customized, if desired. If a customized version of dberr is required, it is
necessary for dberr to return code as its function return value. The
general form of any dberr implementation is given in the example below.
CURRENCY CHANGES
None.
RETURN CODES
code
EXAMPLE
int dberr(code)
int code;
{
.. /* specialized error processing or reporting */
return(code);
}