From 13792b9ab4b63e6460d913866354789172a8968c Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 21 Aug 2023 22:08:46 -0700 Subject: [PATCH] unlocked-io: fix getc_unlocked typo MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * lib/unlocked-io.h (getc): Fix misspelling of ‘getc_unlocked’. --- ChangeLog | 5 +++++ lib/unlocked-io.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1aa0e97f31..ce0489e0cd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2023-08-21 Paul Eggert + + unlocked-io: fix getc_unlocked typo + * lib/unlocked-io.h (getc): Fix misspelling of ‘getc_unlocked’. + 2023-08-21 Bruno Haible alignasof, stdalign: Fix a compilation error in C++ mode on FreeBSD 12. diff --git a/lib/unlocked-io.h b/lib/unlocked-io.h index 4830df4a74..6d2cbf11c3 100644 --- a/lib/unlocked-io.h +++ b/lib/unlocked-io.h @@ -101,7 +101,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 -- 2.39.5