home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_04 / 1104077b < prev    next >
Text File  |  1992-12-23  |  213b  |  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.