Update from main branch.

This commit is contained in:
Ulrich Drepper 1999-06-23 10:48:34 +00:00
parent ea82c7fae2
commit ec8c77a5ba
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -3,3 +3,4 @@
#define fputc putc
#define fputc_unlocked putc_unlocked
#include <fputc.c>
weak_alias (putc, putc_unlocked)