mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 02:03:35 +08:00
support_quote_string: Do not use str parameter name
This avoids a build failure if this identifier is used as a macro in a test.
This commit is contained in:
parent
b473b7d88e
commit
47d8d9a217
@ -1,3 +1,8 @@
|
||||
2018-11-28 Florian Weimer <fweimer@redhat.com>
|
||||
|
||||
* support/support.h (support_quote_string): Do not use str
|
||||
parameter name.
|
||||
|
||||
2018-11-27 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* sysdeps/mach/hurd/Makefile ($(common-objpfx)stamp-errnos): Use
|
||||
|
@ -69,10 +69,10 @@ void support_write_file_string (const char *path, const char *contents);
|
||||
the result). */
|
||||
char *support_quote_blob (const void *blob, size_t length);
|
||||
|
||||
/* Quote the contents of the at STR, in such a way that the result
|
||||
/* Quote the contents of the string, in such a way that the result
|
||||
string can be included in a C literal (in single/double quotes,
|
||||
without putting the quotes into the result). */
|
||||
char *support_quote_string (const char *str);
|
||||
char *support_quote_string (const char *);
|
||||
|
||||
/* Returns non-zero if the file descriptor is a regular file on a file
|
||||
system which supports holes (that is, seeking and writing does not
|
||||
|
Loading…
Reference in New Issue
Block a user