Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_posix/sys/src/ape/lib/v/error.c – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | 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
}