diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-08-16 19:38:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-08-16 19:38:59 +0000 |
commit | 2462764678d7d396bab3706b2be91e2ebfeaf9df (patch) | |
tree | c7fb632ee1682ecde878fd92749277914e40c021 /login | |
parent | e4a0cfa85d1cf54db71188b0b7c55d9c9f84e1de (diff) | |
download | glibc-2462764678d7d396bab3706b2be91e2ebfeaf9df.tar.gz glibc-2462764678d7d396bab3706b2be91e2ebfeaf9df.tar.xz glibc-2462764678d7d396bab3706b2be91e2ebfeaf9df.zip |
Rename to __getutline and make getutline a weak alias.
Diffstat (limited to 'login')
-rw-r--r-- | login/getutline.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/login/getutline.c b/login/getutline.c index 16a02f6e89..bdbb8dad9b 100644 --- a/login/getutline.c +++ b/login/getutline.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. @@ -25,7 +25,7 @@ static struct utmp buffer; struct utmp * -getutline (const struct utmp *line) +__getutline (const struct utmp *line) { struct utmp *result; @@ -34,3 +34,4 @@ getutline (const struct utmp *line) return result; } +weak_alias (__getutline, getutline) |