mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-02-19 23:36:54 +00:00
openbsd-compat/openbsd-compat.h ] Add inet_ntop.c inet_ntop.h back in. Needed for sshconnect.c [sshconnect.c] fix INET6_ADDRSTRLEN for non IPv6 machines [configure.in] make tests with missing libraries fail patch by Wendy Palm <wendyp@cray.com> Added openbsd-compat/bsd-cray.h. Selective patches from William L. Jones <jones@mail.utexas.edu>
14 lines
373 B
C
14 lines
373 B
C
|
|
#ifndef _BSD_CRAY_H
|
|
#define _BSD_CRAY_H
|
|
|
|
#ifdef _CRAY
|
|
void cray_init_job(struct passwd *); /* init cray job */
|
|
void cray_job_termination_handler(int); /* process end of job signal */
|
|
void cray_setup(uid_t, char *); /* set cray limits */
|
|
extern char cray_tmpdir[]; /* cray tmpdir */
|
|
#endif
|
|
|
|
|
|
#endif /* _BSD_CRAY_H */
|