home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 14 / CDACTUAL.iso / cdactual / demobin / share / program / c / XXALLOC.ZIP / XXERROR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-26  |  118 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.