Просмотр исходного кода

getutid is not used internally, removing hidden_proto

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Denys Vlasenko 14 лет назад
Родитель
Сommit
c75712b15a
2 измененных файлов с 3 добавлено и 5 удалено
  1. 0 1
      include/utmp.h
  2. 3 4
      libc/misc/utmp/utent.c

+ 0 - 1
include/utmp.h

@@ -74,7 +74,6 @@ extern void endutent (void) __THROW;
 /* Search forward from the current point in the utmp file until the
    next entry with a ut_type matching ID->ut_type.  */
 extern struct utmp *getutid (__const struct utmp *__id) __THROW;
-libc_hidden_proto(getutid)
 
 /* Search forward from the current point in the utmp file until the
    next entry with a ut_line matching LINE->ut_line.  */

+ 3 - 4
libc/misc/utmp/utent.c

@@ -88,7 +88,7 @@ void endutent(void)
 
 struct utmp *getutent(void)
 {
-    struct utmp *ret = NULL;
+    struct utmp *ret;
 
     __UCLIBC_MUTEX_LOCK(utmplock);
     ret = __getutent();
@@ -125,18 +125,17 @@ static struct utmp *__getutid(const struct utmp *utmp_entry)
 
 struct utmp *getutid(const struct utmp *utmp_entry)
 {
-    struct utmp *ret = NULL;
+    struct utmp *ret;
 
     __UCLIBC_MUTEX_LOCK(utmplock);
     ret = __getutid(utmp_entry);
     __UCLIBC_MUTEX_UNLOCK(utmplock);
     return ret;
 }
-libc_hidden_def(getutid)
 
 struct utmp *getutline(const struct utmp *utmp_entry)
 {
-    struct utmp *lutmp = NULL;
+    struct utmp *lutmp;
 
     __UCLIBC_MUTEX_LOCK(utmplock);
     while ((lutmp = __getutent()) != NULL) {