xref: /reactos/sdk/lib/crt/stdio/perror.c (revision c2c66aff)
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <precomp.h>
3 
4 
5 /*
6  * @implemented
7  */
_wperror(const wchar_t * s)8 void _wperror(const wchar_t *s)
9 {
10   fwprintf(stderr, L"%s: %S\n", s, _strerror(NULL));
11 }
12