From: Paul Eggert Date: Tue, 22 Aug 2023 05:08:46 +0000 (-0700) Subject: unlocked-io: fix getc_unlocked typo X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=13792b9ab4b63e6460d913866354789172a8968c;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 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