basically none of these build

This commit is contained in:
rsc 2004-06-17 03:27:35 +00:00
parent d9c8a7c536
commit be8b315d15
19 changed files with 1459 additions and 0 deletions

13
src/libauth/auth_attr.c Normal file
View file

@ -0,0 +1,13 @@
#include <u.h>
#include <libc.h>
#include <auth.h>
#include <authsrv.h>
#include "authlocal.h"
Attr*
auth_attr(AuthRpc *rpc)
{
if(auth_rpc(rpc, "attr", nil, 0) != ARok)
return nil;
return _parseattr(rpc->arg);
}