xref: /illumos-gate/usr/src/cmd/krb5/kdestroy/krpc_sys.c (revision 2a8bcb4efb45d99ac41c94a75c396b362c414f7f)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
3*7c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
4*7c478bd9Sstevel@tonic-gate  */
5*7c478bd9Sstevel@tonic-gate 
6*7c478bd9Sstevel@tonic-gate #include <sys/types.h>
7*7c478bd9Sstevel@tonic-gate #include <rpc/types.h>
8*7c478bd9Sstevel@tonic-gate #include <sys/vfs.h>
9*7c478bd9Sstevel@tonic-gate #include <sys/errno.h>
10*7c478bd9Sstevel@tonic-gate #include <rpc/auth.h>
11*7c478bd9Sstevel@tonic-gate #include <rpc/rpcsys.h>
12*7c478bd9Sstevel@tonic-gate #include <rpc/rpcsec_gss.h>
13*7c478bd9Sstevel@tonic-gate 
14*7c478bd9Sstevel@tonic-gate 
15*7c478bd9Sstevel@tonic-gate int
krpc_sys(int cmd,void * args)16*7c478bd9Sstevel@tonic-gate krpc_sys(int cmd, void *args)
17*7c478bd9Sstevel@tonic-gate {
18*7c478bd9Sstevel@tonic-gate 
19*7c478bd9Sstevel@tonic-gate 
20*7c478bd9Sstevel@tonic-gate 	return (_rpcsys(cmd, args));
21*7c478bd9Sstevel@tonic-gate 
22*7c478bd9Sstevel@tonic-gate }
23