support _BSD_SOURCE feature test macro

patch by Isaac Dunham. matched closely (maybe not exact) to glibc's
idea of what _BSD_SOURCE should make visible.
This commit is contained in:
Rich Felker
2012-05-22 21:52:08 -04:00
parent 7b5467cbae
commit 419ae6d5c9
22 changed files with 126 additions and 41 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ struct group *getgrent(void);
void endgrent(void);
void setgrent(void);
#ifdef _GNU_SOURCE
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
int getgrouplist(const char *, gid_t, gid_t *, int *);
int setgroups(size_t, const gid_t *);
int initgroups(const char *, gid_t);