xref: /plan9/sys/src/ape/lib/v/error.c (revision 3e12c5d1bb89fc02707907988834ef147769ddaf)
1 #define _POSIX_SOURCE
2 #define _RESEARCH_SOURCE
3 #include <error.h>
4 #include <stdio.h>
5 #include <libv.h>
6 
7 char *_progname;
8 
9 void
_perror(char * s)10 _perror(char *s)
11 {
12 	fprintf(stderr, "%s: ", _progname);
13 	perror(s);
14 }
15