mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 14:44:19 +00:00
11 lines
199 B
C
11 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));
|
|
}
|