home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT166.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-13  |  544 b   |  25 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat166.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <string.h>
  5. #include <stdio.h>
  6. #include <errno.h>
  7.  
  8. void UDFERROR(char *);
  9.  
  10. void main()
  11. {
  12.      FILE *fp;
  13.  
  14.      fp = fopen("TTTT.TTT","rt");
  15.      if (fp == NULL)
  16.          UDFERROR("╡L¬k╢}▒╥└╔«╫");
  17.  
  18. }
  19.  
  20. void UDFERROR(message)
  21. char *message;
  22. {
  23.      fprintf(stderr,"\a%s:%s",message, strerror(errno));
  24. }
  25.