mirror of git://anongit.mindrot.org/openssh.git
15 lines
312 B
C
15 lines
312 B
C
/* $Id: bsd-getpeereid.h,v 1.1 2002/09/12 00:33:02 djm Exp $ */
|
|
|
|
#ifndef _BSD_GETPEEREID_H
|
|
#define _BSD_GETPEEREID_H
|
|
|
|
#include "config.h"
|
|
|
|
#include <sys/types.h> /* For uid_t, gid_t */
|
|
|
|
#ifndef HAVE_GETPEEREID
|
|
int getpeereid(int , uid_t *, gid_t *);
|
|
#endif /* HAVE_GETPEEREID */
|
|
|
|
#endif /* _BSD_GETPEEREID_H */
|