Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | 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
}