From 50fc48c54691e9119bfdc083ff8a7b9c3247c00e Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 23 Jun 1999 10:45:47 +0000 Subject: [PATCH] Don't define alias if fputc is defined as a macro. --- stdio/fputc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stdio/fputc.c b/stdio/fputc.c index 754b4f9..4d7de70 100644 --- a/stdio/fputc.c +++ b/stdio/fputc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1996, 1997, 1998, 1999 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 @@ -35,4 +35,6 @@ fputc (c, stream) return __putc (c, stream); } +#ifndef fputc weak_alias (fputc, fputc_unlocked) +#endif -- 2.7.4