blob: 61c8ad74db4990f9f8bec32b3e38a5a810573e35 (
plain)
1
2
3
4
5
6
7
8
|
/* ISC license. */
#include <skalibs/allreadwrite.h>
unsigned int allwrite (int fd, char const *buf, unsigned int len)
{
return allreadwrite((iofunc_t_ref)&fd_write, fd, (char *)buf, len) ;
}
|