1*85858ec2Sguenther /* $OpenBSD: auth.h,v 1.1 2015/09/13 15:36:56 guenther Exp $ */ 2*85858ec2Sguenther /* 3*85858ec2Sguenther * Copyright (c) 2015 Philip Guenther <guenther@openbsd.org> 4*85858ec2Sguenther * 5*85858ec2Sguenther * Permission to use, copy, modify, and distribute this software for any 6*85858ec2Sguenther * purpose with or without fee is hereby granted, provided that the above 7*85858ec2Sguenther * copyright notice and this permission notice appear in all copies. 8*85858ec2Sguenther * 9*85858ec2Sguenther * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10*85858ec2Sguenther * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11*85858ec2Sguenther * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12*85858ec2Sguenther * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13*85858ec2Sguenther * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14*85858ec2Sguenther * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15*85858ec2Sguenther * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16*85858ec2Sguenther */ 17*85858ec2Sguenther 18*85858ec2Sguenther #ifndef _LIBC_RPC_AUTH_H 19*85858ec2Sguenther #define _LIBC_RPC_AUTH_H 20*85858ec2Sguenther 21*85858ec2Sguenther #include_next <rpc/auth.h> 22*85858ec2Sguenther 23*85858ec2Sguenther PROTO_NORMAL(authnone_create); 24*85858ec2Sguenther PROTO_NORMAL(authunix_create); 25*85858ec2Sguenther PROTO_NORMAL(authunix_create_default); 26*85858ec2Sguenther PROTO_DEPRECATED(set_rpc_maxgrouplist); 27*85858ec2Sguenther PROTO_DEPRECATED(xdr_des_block); 28*85858ec2Sguenther 29*85858ec2Sguenther #endif /* !_LIBC_RPC_AUTH_H */ 30