]> Savannah Git Hosting - gnulib.git/commitdiff
unlocked-io: fix getc_unlocked typo
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 22 Aug 2023 05:08:46 +0000 (22:08 -0700)
committerBruno Haible <bruno@clisp.org>
Wed, 30 Aug 2023 10:00:47 +0000 (12:00 +0200)
* lib/unlocked-io.h (getc): Fix misspelling of ‘getc_unlocked’.

ChangeLog
lib/unlocked-io.h

index 1aa0e97f315b0766c184f36cbfd9cfca4d798b68..ce0489e0cd5f177224b5da7e9be9928f3a1ae4aa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2023-08-21  Paul Eggert  <eggert@cs.ucla.edu>
+
+       unlocked-io: fix getc_unlocked typo
+       * lib/unlocked-io.h (getc): Fix misspelling of ‘getc_unlocked’.
+
 2023-08-21  Bruno Haible  <bruno@clisp.org>
 
        alignasof, stdalign: Fix a compilation error in C++ mode on FreeBSD 12.
index 4830df4a7477af44d37bda82740d5fc77890c6fd..6d2cbf11c3367355a04207105fa1047fa796634c 100644 (file)
 #  define fwrite_unlocked(w,x,y,z) fwrite (w,x,y,z)
 # endif
 
-# if HAVE_DECL_GETC_UNLOCKED || defined get_unlocked
+# if HAVE_DECL_GETC_UNLOCKED || defined getc_unlocked
 #  undef getc
 #  define getc(x) getc_unlocked (x)
 # else