xref: /titanic_41/usr/src/cmd/krb5/kdestroy/krpc_sys.c (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
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 #pragma ident	"%Z%%M%	%I%	%E% SMI"
7*7c478bd9Sstevel@tonic-gate 
8*7c478bd9Sstevel@tonic-gate #include <sys/types.h>
9*7c478bd9Sstevel@tonic-gate #include <rpc/types.h>
10*7c478bd9Sstevel@tonic-gate #include <sys/vfs.h>
11*7c478bd9Sstevel@tonic-gate #include <sys/errno.h>
12*7c478bd9Sstevel@tonic-gate #include <rpc/auth.h>
13*7c478bd9Sstevel@tonic-gate #include <rpc/rpcsys.h>
14*7c478bd9Sstevel@tonic-gate #include <rpc/rpcsec_gss.h>
15*7c478bd9Sstevel@tonic-gate 
16*7c478bd9Sstevel@tonic-gate 
17*7c478bd9Sstevel@tonic-gate int
krpc_sys(int cmd,void * args)18*7c478bd9Sstevel@tonic-gate krpc_sys(int cmd, void *args)
19*7c478bd9Sstevel@tonic-gate {
20*7c478bd9Sstevel@tonic-gate 
21*7c478bd9Sstevel@tonic-gate 
22*7c478bd9Sstevel@tonic-gate 	return (_rpcsys(cmd, args));
23*7c478bd9Sstevel@tonic-gate 
24*7c478bd9Sstevel@tonic-gate }
25