blob: df8a09fd34d0a9674c085784835c0caf98a143d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include "io.h"
#include <errno.h>
#include <string.h>
void perror(char const *string)
{
fprintf(_stdstream_wrap(stream_error), "%s: %s", string,
strerror(errno));
}
|