blob: 317705743371013510960b7d886e855829f22d67 [file] [log] [blame]
/*
* perror.c
*/
#include <errno.h>
#include <stdio.h>
#include <string.h>
void perror(const char *s)
{
int e = errno;
fprintf(stderr, "%s: %s\n", s, strerror(e));
}