Made write_sbuf() non-static.

This commit is contained in:
Wayne Davison
2004-07-20 16:57:18 +00:00
parent 66a9dc9639
commit cf338ab1be

3
io.c
View File

@@ -1035,12 +1035,11 @@ void write_buf(int f,char *buf,size_t len)
}
/** Write a string to the connection */
static void write_sbuf(int f,char *buf)
void write_sbuf(int f, char *buf)
{
writefd(f, buf, strlen(buf));
}
void write_byte(int f,unsigned char c)
{
writefd(f, (char *)&c, 1);