]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - libio/fputc_u.c
NEWS: Mention Minguo calendar support added [BZ #24293]
[thirdparty/glibc.git] / libio / fputc_u.c
index 24dd9ed774131e6fc88beaab7a68e971efb3c4ad..277e474428a009ebe22b318b58419a12f1f0cf36 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1993-2019 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
 #undef fputc_unlocked
 
 int
-fputc_unlocked (c, fp)
-     int c;
-     _IO_FILE *fp;
+fputc_unlocked (int c, FILE *fp)
 {
   CHECK_FILE (fp, EOF);
   return _IO_putc_unlocked (c, fp);
 }
+libc_hidden_def (fputc_unlocked)