From: Paul Eggert Date: Tue, 22 Aug 2023 05:08:46 +0000 (-0700) Subject: unlocked-io: fix getc_unlocked typo X-Git-Tag: v1.0~868 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=c5a5f46e54ce045b5c67cf3258f2c344b40bdbdc;p=gnulib.git unlocked-io: fix getc_unlocked typo * lib/unlocked-io.h (getc): Fix misspelling of ‘getc_unlocked’. --- diff --git a/ChangeLog b/ChangeLog index a0e6b79f90..0583de6730 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