blob: 45585cd57739eed2f97cc8796526429d24ee18ef [file] [log] [blame]
/*
* perror.c
*/
#include <errno.h>
#include <stdio.h>
#include <string.h>
void perror(const char *s)
{
fprintf(stderr, "%s: error %d\n", s, errno);
}