No inline declarations please.

This commit is contained in:
Christoph Lohmann 2015-07-10 14:19:31 +02:00
parent 41f70a1cff
commit d3c7b6fb73
1 changed files with 2 additions and 2 deletions

4
st.c
View File

@ -558,10 +558,10 @@ static int frclen = 0;
ssize_t
xwrite(int fd, const char *s, size_t len)
{
size_t aux = len;
size_t aux = len, r;
while (len > 0) {
ssize_t r = write(fd, s, len);
r = write(fd, s, len);
if (r < 0)
return r;
len -= r;