From 21730caa6647f645974e132ca8afec79b4eeab2b Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 18 Sep 2009 20:57:40 +0200 Subject: trim Experimentally off and uncommented hidden sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer --- libc/pwd_grp/pwd_grp.c | 37 ------------------------------------- 1 file changed, 37 deletions(-) (limited to 'libc/pwd_grp') diff --git a/libc/pwd_grp/pwd_grp.c b/libc/pwd_grp/pwd_grp.c index 8c75afb0a..b4f6c98f7 100644 --- a/libc/pwd_grp/pwd_grp.c +++ b/libc/pwd_grp/pwd_grp.c @@ -36,22 +36,8 @@ #endif #include -/* Experimentally off - libc_hidden_proto(strchr) */ -/* Experimentally off - libc_hidden_proto(strcmp) */ -/* Experimentally off - libc_hidden_proto(strcpy) */ -/* Experimentally off - libc_hidden_proto(strlen) */ -/* libc_hidden_proto(strtoul) */ -/* libc_hidden_proto(rewind) */ -/* libc_hidden_proto(fgets_unlocked) */ -/* libc_hidden_proto(__fputc_unlocked) */ -/* libc_hidden_proto(sprintf) */ -/* libc_hidden_proto(fopen) */ -/* libc_hidden_proto(fclose) */ -/* libc_hidden_proto(fprintf) */ #ifdef __UCLIBC_HAS_XLOCALE__ -/* libc_hidden_proto(__ctype_b_loc) */ #elif defined __UCLIBC_HAS_CTYPE_TABLES__ -/* libc_hidden_proto(__ctype_b) */ #endif /**********************************************************************/ @@ -84,7 +70,6 @@ extern gid_t* __getgrouplist_internal(const char *user, gid_t gid, int *ngroups) #ifdef L_fgetpwent_r #ifdef __USE_SVID -/* libc_hidden_proto(fgetpwent_r) */ int fgetpwent_r(FILE *__restrict stream, struct passwd *__restrict resultbuf, char *__restrict buffer, size_t buflen, struct passwd **__restrict result) @@ -107,7 +92,6 @@ libc_hidden_def(fgetpwent_r) #ifdef L_fgetgrent_r #ifdef __USE_SVID -/* libc_hidden_proto(fgetgrent_r) */ int fgetgrent_r(FILE *__restrict stream, struct group *__restrict resultbuf, char *__restrict buffer, size_t buflen, struct group **__restrict result) @@ -129,7 +113,6 @@ libc_hidden_def(fgetgrent_r) /**********************************************************************/ #ifdef L_fgetspent_r -/* libc_hidden_proto(fgetspent_r) */ int fgetspent_r(FILE *__restrict stream, struct spwd *__restrict resultbuf, char *__restrict buffer, size_t buflen, struct spwd **__restrict result) @@ -155,7 +138,6 @@ libc_hidden_def(fgetspent_r) #ifdef L_fgetpwent #ifdef __USE_SVID -/* libc_hidden_proto(fgetpwent_r) */ struct passwd *fgetpwent(FILE *stream) { @@ -173,7 +155,6 @@ struct passwd *fgetpwent(FILE *stream) #ifdef L_fgetgrent #ifdef __USE_SVID -/* libc_hidden_proto(fgetgrent_r) */ struct group *fgetgrent(FILE *stream) { @@ -190,7 +171,6 @@ struct group *fgetgrent(FILE *stream) /**********************************************************************/ #ifdef L_fgetspent -/* libc_hidden_proto(fgetspent_r) */ struct spwd *fgetspent(FILE *stream) { @@ -206,7 +186,6 @@ struct spwd *fgetspent(FILE *stream) /**********************************************************************/ #ifdef L_sgetspent_r -/* libc_hidden_proto(sgetspent_r) */ int sgetspent_r(const char *string, struct spwd *result_buf, char *buffer, size_t buflen, struct spwd **result) { @@ -296,7 +275,6 @@ libc_hidden_def(sgetspent_r) /**********************************************************************/ #ifdef L_getpwuid -/* libc_hidden_proto(getpwuid_r) */ struct passwd *getpwuid(uid_t uid) { @@ -312,7 +290,6 @@ struct passwd *getpwuid(uid_t uid) /**********************************************************************/ #ifdef L_getgrgid -/* libc_hidden_proto(getgrgid_r) */ struct group *getgrgid(gid_t gid) { @@ -332,8 +309,6 @@ struct group *getgrgid(gid_t gid) * to have been created as a reentrant version of the non-standard * functions getspuid. Why getspuid was added, I do not know. */ -/* libc_hidden_proto(getpwuid_r) */ -/* libc_hidden_proto(getspnam_r) */ int getspuid_r(uid_t uid, struct spwd *__restrict resultbuf, char *__restrict buffer, size_t buflen, @@ -373,7 +348,6 @@ struct spwd *getspuid(uid_t uid) /**********************************************************************/ #ifdef L_getpwnam -/* libc_hidden_proto(getpwnam_r) */ struct passwd *getpwnam(const char *name) { @@ -389,7 +363,6 @@ struct passwd *getpwnam(const char *name) /**********************************************************************/ #ifdef L_getgrnam -/* libc_hidden_proto(getgrnam_r) */ struct group *getgrnam(const char *name) { @@ -405,7 +378,6 @@ struct group *getgrnam(const char *name) /**********************************************************************/ #ifdef L_getspnam -/* libc_hidden_proto(getspnam_r) */ struct spwd *getspnam(const char *name) { @@ -421,7 +393,6 @@ struct spwd *getspnam(const char *name) /**********************************************************************/ #ifdef L_getpw -/* libc_hidden_proto(getpwuid_r) */ int getpw(uid_t uid, char *buf) { @@ -474,7 +445,6 @@ void endpwent(void) } -/* libc_hidden_proto(getpwent_r) */ int getpwent_r(struct passwd *__restrict resultbuf, char *__restrict buffer, size_t buflen, struct passwd **__restrict result) @@ -531,7 +501,6 @@ void endgrent(void) __UCLIBC_MUTEX_UNLOCK(mylock); } -/* libc_hidden_proto(getgrent_r) */ int getgrent_r(struct group *__restrict resultbuf, char *__restrict buffer, size_t buflen, struct group **__restrict result) @@ -588,7 +557,6 @@ void endspent(void) __UCLIBC_MUTEX_UNLOCK(mylock); } -/* libc_hidden_proto(getspent_r) */ int getspent_r(struct spwd *resultbuf, char *buffer, size_t buflen, struct spwd **result) { @@ -622,7 +590,6 @@ libc_hidden_def(getspent_r) /**********************************************************************/ #ifdef L_getpwent -/* libc_hidden_proto(getpwent_r) */ struct passwd *getpwent(void) { @@ -638,7 +605,6 @@ struct passwd *getpwent(void) /**********************************************************************/ #ifdef L_getgrent -/* libc_hidden_proto(getgrent_r) */ struct group *getgrent(void) { @@ -654,7 +620,6 @@ struct group *getgrent(void) /**********************************************************************/ #ifdef L_getspent -/* libc_hidden_proto(getspent_r) */ struct spwd *getspent(void) { @@ -670,7 +635,6 @@ struct spwd *getspent(void) /**********************************************************************/ #ifdef L_sgetspent -/* libc_hidden_proto(sgetspent_r) */ struct spwd *sgetspent(const char *string) { @@ -773,7 +737,6 @@ int getgrouplist(const char *user, gid_t gid, gid_t *groups, int *ngroups) #ifdef L_initgroups #ifdef __USE_BSD -/* libc_hidden_proto(setgroups) */ int initgroups(const char *user, gid_t gid) { -- cgit v1.2.3