mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 10:50:07 +00:00
Don't define alias if fputc is defined as a macro.
This commit is contained in:
parent
8b2134db5e
commit
50fc48c546
@ -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.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -35,4 +35,6 @@ fputc (c, stream)
|
|||||||
return __putc (c, stream);
|
return __putc (c, stream);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef fputc
|
||||||
weak_alias (fputc, fputc_unlocked)
|
weak_alias (fputc, fputc_unlocked)
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user