Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/include/grp.h')
-rw-r--r--newlib/libc/include/grp.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/include/grp.h b/newlib/libc/include/grp.h
index 1273e3959..e453dca78 100644
--- a/newlib/libc/include/grp.h
+++ b/newlib/libc/include/grp.h
@@ -66,10 +66,12 @@ extern "C" {
#ifndef __INSIDE_CYGWIN__
struct group *getgrgid (gid_t);
struct group *getgrnam (const char *);
+#ifndef __CYGWIN__
int getgrnam_r (const char *, struct group *,
char *, size_t, struct group **);
int getgrgid_r (gid_t, struct group *,
char *, size_t, struct group **);
+#endif /* !__CYGWIN__ */
#ifndef _POSIX_SOURCE
struct group *getgrent (void);
void setgrent (void);