mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
16 lines
243 B
C
16 lines
243 B
C
|
#include "wrap.h"
|
||
|
#include <sys/types.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
size_t
|
||
|
m3_write(int fd, const void *buf, int nbytes)
|
||
|
{
|
||
|
int result;
|
||
|
|
||
|
ENTER_CRITICAL;
|
||
|
MAKE_READABLE(buf);
|
||
|
result = write(fd, buf, nbytes);
|
||
|
EXIT_CRITICAL;
|
||
|
return result;
|
||
|
}
|