Browse Source

remove unneeded hiddens for rtime, basename, strtof* and wcstof*

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Peter S. Mazinger 13 years ago
parent
commit
5068fb4d28
5 changed files with 0 additions and 6 deletions
  1. 0 1
      include/rpc/auth_des.h
  2. 0 1
      include/string.h
  3. 0 1
      libc/inet/rpc/rtime.c
  4. 0 2
      libc/stdlib/_strtod.c
  5. 0 1
      libc/string/basename.c

+ 0 - 1
include/rpc/auth_des.h

@@ -109,7 +109,6 @@ extern int getsecretkey (__const char *__name, char *__key,
 
 extern int rtime (struct sockaddr_in *__addrp, struct rpc_timeval *__timep,
 		  struct rpc_timeval *__timeout) __THROW;
-libc_hidden_proto(rtime)
 
 __END_DECLS
 

+ 0 - 1
include/string.h

@@ -462,7 +462,6 @@ extern void *memfrob (void *__s, size_t __n) __THROW __nonnull ((1));
    in <libgen.h>) which makes the XPG version of this function
    available.  */
 extern char *basename (__const char *__filename) __THROW __nonnull ((1));
-libc_hidden_proto(basename)
 # endif
 #endif /* __USE_GNU */
 

+ 0 - 1
libc/inet/rpc/rtime.c

@@ -150,4 +150,3 @@ rtime (struct sockaddr_in *addrp, struct rpc_timeval *timep,
   timep->tv_usec = 0;
   return 0;
 }
-libc_hidden_def (rtime)

+ 0 - 2
libc/stdlib/_strtod.c

@@ -509,7 +509,6 @@ void attribute_hidden __fp_range_check(__fpmax_t y, __fpmax_t x)
 #endif
 
 
-libc_hidden_proto(__XL_NPP(strtof))
 float __XL_NPP(strtof)(const Wchar *str, Wchar **endptr   __LOCALE_PARAM )
 {
 #if FPMAX_TYPE == 1
@@ -526,7 +525,6 @@ float __XL_NPP(strtof)(const Wchar *str, Wchar **endptr   __LOCALE_PARAM )
 	return y;
 #endif
 }
-libc_hidden_def(__XL_NPP(strtof))
 
 #endif
 #endif

+ 0 - 1
libc/string/basename.c

@@ -24,5 +24,4 @@ char *basename(const char *path)
 
 	return (char *) p;
 }
-libc_hidden_def(basename)
 #endif