blob: 6dccc463e5839769cf679a9d9019c224d8a8ead0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#define _POSIX_SOURCE
#define _RESEARCH_SOURCE
#include <error.h>
#include <stdio.h>
#include <libv.h>
char *_progname;
void
_perror(char *s)
{
fprintf(stderr, "%s: ", _progname);
perror(s);
}
|