home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume20 / xxalloc / xxerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-10-16  |  107 b   |  12 lines

  1. /* xxerror.c */
  2. #include <stdio.h>
  3. void xx_error(s)
  4. char *s;
  5. {
  6.     fprintf(stderr, s);
  7.     exit(2);
  8.     return;
  9. }
  10.  
  11.  
  12.