$FUNCNAME$
  OUTERR()
$CATEGORY$
  TERMINAL/IO,FILE/IO
$SUMMARY$
   Write a list of values to the standard error device
$LANG_RU$
         
$SYNTAX$
     OUTERR(<exp list>) --> NIL
$LANG_RU$
     OUTERR(< >) --> NIL
$ARGUMENTS$
     <exp list> is a list of values to display and can consist of any
     combination of data types including memo.
$LANG_RU$
     < > -  ,    
      ,  memo ,    .
$RETURNS$
     OUTERR() always returns NIL.
$LANG_RU$
     OUTERR()   NIL.
$DESCRIPTION$
     OUTERR() is identical to OUTSTD() except that it writes to the standard
     error device rather than the standard output device.  Output sent to the
     standard error device bypasses the xClipper console and output devices
     as well as any DOS redirection.  It is typically used to log error
     messages in a manner that will not interfere with the standard screen or
     printer output.
$LANG_RU$
      OUTERR()   OUTSTD(),   , 
            
     ,      .   
          , 
     xClipper-   ,   ,  
        DOS.     
        ,     
         .
$EXAMPLES$
       This example displays an error message along with the date and
	time of occurrence to the screen:

	OUTERR("File lock failure", DATE(), TIME())
$LANG_RU$
             
            :

       OUTERR( "  ",DATE(),TIME() )
$SEEALSO$
  OUTSTD(),DISPOUT()
$END$
