home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1997 #3 / Amiga Plus CD - 1997 - No. 03.iso / pd / programmierung / vbcc / machines / amiga68k / libsrc / stdio / perror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-22  |  144 b   |  10 lines

  1. #include <stdio.h>
  2. #include <errno.h>
  3.  
  4. extern char *_errors[];
  5.  
  6. void perror(const char *s)
  7. {
  8.     fprintf(stderr,"%s: %s\n",s,_errors[errno]);
  9. }
  10.