Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 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
10
_perror(char *s)
11
{
12
	fprintf(stderr, "%s: ", _progname);
13
	perror(s);
14
}