mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-11 03:29:09 +08:00
* Split out cygwin/_ucred.h file * drop local credentials Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
21 lines
404 B
C
21 lines
404 B
C
/* cygwin/_ucred.h
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
#ifndef _CYGWIN__UCRED_H
|
|
#define _CYGWIN__UCRED_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
struct ucred {
|
|
pid_t pid;
|
|
uid_t uid;
|
|
gid_t gid;
|
|
};
|
|
|
|
#endif /* _CYGWIN__UCRED_H */
|