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/misc/ttyent/getttyent.c | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'libc/misc/ttyent') diff --git a/libc/misc/ttyent/getttyent.c b/libc/misc/ttyent/getttyent.c index dd6d9ad62..f28385d35 100644 --- a/libc/misc/ttyent/getttyent.c +++ b/libc/misc/ttyent/getttyent.c @@ -38,21 +38,8 @@ #include #endif -/* Experimentally off - libc_hidden_proto(strchr) */ -/* Experimentally off - libc_hidden_proto(strcmp) */ -/* Experimentally off - libc_hidden_proto(strncmp) */ -/* libc_hidden_proto(__fsetlocking) */ -/* libc_hidden_proto(rewind) */ -/* libc_hidden_proto(fgets_unlocked) */ -/* libc_hidden_proto(getc_unlocked) */ -/* libc_hidden_proto(__fgetc_unlocked) */ -/* libc_hidden_proto(fopen) */ -/* libc_hidden_proto(fclose) */ -/* libc_hidden_proto(abort) */ #ifdef __UCLIBC_HAS_XLOCALE__ -/* libc_hidden_proto(__ctype_b_loc) */ #elif defined __UCLIBC_HAS_CTYPE_TABLES__ -/* libc_hidden_proto(__ctype_b) */ #endif static char zapchar; @@ -102,7 +89,6 @@ static char * value(register char *p) return ((p = strchr(p, '=')) ? ++p : NULL); } -/* libc_hidden_proto(setttyent) */ int setttyent(void) { @@ -120,7 +106,6 @@ int setttyent(void) } libc_hidden_def(setttyent) -/* libc_hidden_proto(getttyent) */ struct ttyent * getttyent(void) { register int c; @@ -201,7 +186,6 @@ struct ttyent * getttyent(void) } libc_hidden_def(getttyent) -/* libc_hidden_proto(endttyent) */ int endttyent(void) { int rval; -- cgit v1.2.3