mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-16 00:20:49 +02:00
Bash-5.3-alpha release
This commit is contained in:
+2
-5
@@ -1,6 +1,6 @@
|
||||
/* zwrite - write contents of buffer to file descriptor, retrying on error */
|
||||
|
||||
/* Copyright (C) 1999-2002 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1999-2002, 2022 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Bash, the Bourne Again SHell.
|
||||
|
||||
@@ -36,10 +36,7 @@ extern int errno;
|
||||
it is interrupted. We retry three times if we get a zero-length
|
||||
write. Any other signal causes this function to return prematurely. */
|
||||
int
|
||||
zwrite (fd, buf, nb)
|
||||
int fd;
|
||||
char *buf;
|
||||
size_t nb;
|
||||
zwrite (int fd, char *buf, size_t nb)
|
||||
{
|
||||
int n, i, nt;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user