]> 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)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 22 Aug 2023 05:08:46 +0000 (22:08 -0700)
* lib/unlocked-io.h (getc): Fix misspelling of ‘getc_unlocked’.

ChangeLog
lib/unlocked-io.h

index a0e6b79f906e80e150454466a17c8586da19b027..0583de673071722f5c272fe55b61d69720826a24 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