source: trunk/libs/newlib/src/newlib/libc/syscalls/syswrite.c @ 559

Last change on this file since 559 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 191 bytes
Line 
1/* connector for write */
2
3#include <reent.h>
4#include <unistd.h>
5
6_READ_WRITE_RETURN_TYPE
7write (int fd,
8     const void *buf,
9     size_t cnt)
10{
11  return _write_r (_REENT, fd, buf, cnt);
12}
Note: See TracBrowser for help on using the repository browser.