diff options
Diffstat (limited to 'stdio/fgets.c')
-rw-r--r-- | stdio/fgets.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/stdio/fgets.c b/stdio/fgets.c index 3d6833d089..4fbb4025de 100644 --- a/stdio/fgets.c +++ b/stdio/fgets.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 95, 96, 97, 98 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -121,3 +121,5 @@ fgets (s, n, stream) *p = '\0'; return ferror (stream) ? NULL : s; } + +weak_alias (fgets, fgets_unlocked) |