home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib9 / v_11_04 / 1104077b < prev    next >
Encoding:
Text File  |  1995-11-01  |  213 b   |  15 lines

  1. /* error.c */
  2. /* Copyright 1992 by P.J. LaBrocca */
  3.  
  4. #include "mixed.h"
  5. #include <stdio.h>
  6.  
  7. mixed_t mix_error(char *s)
  8. {
  9.     mixed_t t;
  10.  
  11.     fprintf(stderr, "Error: %s\n", s);
  12.     return *mix_init( &t, 1, 0, 1 );
  13. }
  14.  
  15.