blob: d249a0f7e6e461b2f6ab5e4e96be4c08e04d8bc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Copyright (c) 1999 by Sun Microsystems, Inc.
* All rights reserved.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#ifndef _SUNW_IRS_INIT_H
#define _SUNW_IRS_INIT_H
extern struct irs_acc *sunw_irs_nis_acc(const char *);
extern struct irs_acc *sunw_irs_irp_acc(const char *);
#ifndef __SUNW_IRS_INIT_NODEFINE
#define __irs_nis_acc sunw_irs_nis_acc
#define __irs_irp_acc sunw_irs_irp_acc
#endif /* __SUNW_IRS_INIT_NODEFINE */
#endif /* _SUNW_IRS_INIT_H */
|