We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44dbd3a commit d60164aCopy full SHA for d60164a
libcharset/lib/ChangeLog
@@ -1,3 +1,9 @@
1
+2003-06-27 Bruno Haible <bruno@clisp.org>
2
+
3
+ Avoid use of *_unlocked functions on Solaris 2.5.1.
4
+ * localcharset.c: Test HAVE_DECL_GETC_UNLOCKED, not HAVE_GETC_UNLOCKED.
5
+ Reported by Eric Botcazou <ebotcazou@libertysurf.fr>.
6
7
2003-08-20 Bruno Haible <bruno@clisp.org>
8
9
* config.charset (linux-gnulibc1*): Change hr_HR, ro_RO to ISO-8859-2.
libcharset/lib/localcharset.c
@@ -86,7 +86,7 @@
86
# define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR)
87
#endif
88
89
-#ifdef HAVE_GETC_UNLOCKED
+#if HAVE_DECL_GETC_UNLOCKED
90
# undef getc
91
# define getc getc_unlocked
92
0 commit comments