mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
Fix typo in string/bits/string2.h.
The comment above the bzero() macro in this file appears to have been copied verbatim from the comment above the memset() prototype in string.h proper. bzero() has no 'c' argument and can only set memory contents to 0. (The comment above the prototype of bzero() in string.h proper does not make the same mistake.) * string/bits/string2.h: Fix typo in comment.
This commit is contained in:
parent
809b72df6c
commit
9601d3ad78
@ -1,3 +1,7 @@
|
||||
2016-11-14 Zack Weinberg <zackw@panix.com>
|
||||
|
||||
* string/bits/string2.h: Fix typo in comment.
|
||||
|
||||
2016-11-14 Zack Weinberg <zackw@panix.com>
|
||||
|
||||
* misc/sys/sysmacros.h (__SYSMACROS_DM, __SYSMACROS_DM1): New macros.
|
||||
|
@ -52,7 +52,7 @@
|
||||
#define __string2_1bptr_p(__x) \
|
||||
((size_t)(const void *)((__x) + 1) - (size_t)(const void *)(__x) == 1)
|
||||
|
||||
/* Set N bytes of S to C. */
|
||||
/* Set N bytes of S to 0. */
|
||||
#if !defined _HAVE_STRING_ARCH_memset
|
||||
# define __bzero(s, n) __builtin_memset (s, '\0', n)
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user