home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / stdio / perror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  248 b   |  19 lines

  1.  
  2. /*
  3.  *  PERROR.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <stdio.h>
  9. #include <errno.h>
  10. #include <string.h>
  11.  
  12. void
  13. perror(str)
  14. const char *str;
  15. {
  16.     fprintf(stderr, "%s: (%d)%s\n", str, errno, strerror(errno));
  17. }
  18.  
  19.