mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-18 16:14:34 +00:00
15 lines
337 B
C
15 lines
337 B
C
/* XXX - BSD license */
|
|
|
|
#ifndef _PORT_IRIX_H
|
|
#define _PORT_IRIX_H
|
|
|
|
#if defined(WITH_IRIX_PROJECT) || \
|
|
defined(WITH_IRIX_JOBS) || \
|
|
defined(WITH_IRIX_ARRAY)
|
|
|
|
void irix_setusercontext(struct passwd *pw);
|
|
|
|
#endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
|
|
|
|
#endif /* ! _PORT_IRIX_H */
|