aboutsummaryrefslogtreecommitdiff
path: root/stdio/fputc.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio/fputc.c')
-rw-r--r--stdio/fputc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/stdio/fputc.c b/stdio/fputc.c
index fc7ce5b..754b4f9 100644
--- a/stdio/fputc.c
+++ b/stdio/fputc.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1996, 1997, 1998 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
@@ -34,3 +34,5 @@ fputc (c, stream)
return __putc (c, stream);
}
+
+weak_alias (fputc, fputc_unlocked)