1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-02 02:54:28 +02:00

s/const void */void const */

This commit is contained in:
Jim Meyering
2002-12-03 18:20:38 +00:00
parent 7cec5a7e3c
commit ef97c32946

View File

@@ -61,7 +61,7 @@ extern int errno;
Return the actual number of bytes written, zero for EOF, or SAFE_WRITE_ERROR
upon error. */
size_t
safe_write (int fd, const void *buf, size_t count)
safe_write (int fd, void const *buf, size_t count)
{
ssize_t result;