Newer
Older
Scratch / mobius / src / libc / stdio / pwerror.c
@Christopher W. Olsen Christopher W. Olsen on 25 Oct 2019 148 bytes Scratch
#include <string.h>
#include <stdio.h>
#include <errno.h>

void _pwerror(const wchar_t* string)
{
	wprintf(L"%s: %s\n", string, _wcserror(errno));
}