mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
12 lines
199 B
C
12 lines
199 B
C
|
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
||
|
#include <precomp.h>
|
||
|
|
||
|
|
||
|
/*
|
||
|
* @implemented
|
||
|
*/
|
||
|
void _wperror(const wchar_t *s)
|
||
|
{
|
||
|
fwprintf(stderr, L"%s: %S\n", s, _strerror(NULL));
|
||
|
}
|