]> 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:24:19 +0000 (12:24 +0200)
* lib/unlocked-io.h (getc): Fix misspelling of ‘getc_unlocked’.

ChangeLog
lib/unlocked-io.h

index f57dfdfa555fe8a7310969e779b2353314488819..806fea7817afd332c3fea68edea33962811bb542 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 fdef624ab9c29aa6ff5d753798dbb2d87cdf26bb..f5e49f090e2a16ec180f1e68c2d70dab28ab1d86 100644 (file)
@@ -96,7 +96,7 @@
 #  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