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_unix/sys/src/cmd/faces/dblook.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
#include <u.h>
2
#include <libc.h>
3
#include <draw.h>
4
#include <plumb.h>
5
#include <regexp.h>
6
#include <bio.h>
7
#include "faces.h"
8
 
9
void
10
main(int argc, char **argv)
11
{
12
	Face f;
13
	char *q;
14
 
15
	if(argc != 3){
16
		fprint(2, "usage: dblook name domain\n");
17
		exits("usage");
18
	}
19
 
20
	q = findfile(&f, argv[2], argv[1]);
21
	print("%s\n", q);
22
}
23
 
24
void
25
killall(char *s)
26
{
27
	USED(s);
28
}