xref: /titanic_50/usr/src/cmd/ssh/include/port-irix.h (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * XXX - Add OpenSSH copyright
3*7c478bd9Sstevel@tonic-gate  */
4*7c478bd9Sstevel@tonic-gate 
5*7c478bd9Sstevel@tonic-gate #ifndef	_PORT_IRIX_H
6*7c478bd9Sstevel@tonic-gate #define	_PORT_IRIX_H
7*7c478bd9Sstevel@tonic-gate 
8*7c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
9*7c478bd9Sstevel@tonic-gate 
10*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus
11*7c478bd9Sstevel@tonic-gate extern "C" {
12*7c478bd9Sstevel@tonic-gate #endif
13*7c478bd9Sstevel@tonic-gate 
14*7c478bd9Sstevel@tonic-gate 
15*7c478bd9Sstevel@tonic-gate #if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
16*7c478bd9Sstevel@tonic-gate 
17*7c478bd9Sstevel@tonic-gate void irix_setusercontext(struct passwd *pw);
18*7c478bd9Sstevel@tonic-gate 
19*7c478bd9Sstevel@tonic-gate #endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
20*7c478bd9Sstevel@tonic-gate 
21*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus
22*7c478bd9Sstevel@tonic-gate }
23*7c478bd9Sstevel@tonic-gate #endif
24*7c478bd9Sstevel@tonic-gate 
25*7c478bd9Sstevel@tonic-gate #endif /* _PORT_IRIX_H */
26