fdde0bb823ab934c288cb65bffc5a65ff5708d6e
[reactos.git] / lib / crtdll / stdio / perror.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <crtdll/stdio.h>
3 #include <crtdll/string.h>
4 #include <crtdll/errno.h>
5
6
7 #ifdef perror
8 #undef perror
9 void perror(const char *s);
10 #endif
11
12 void
13 perror(const char *s)
14 {
15  
16   fprintf(stderr, "%s: %s\n", s, _strerror(NULL));
17 }