This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
pic32-newlib/newlib/libgloss/pic32mx/write.c
2009-02-02 09:36:40 +00:00

21 lines
269 B
C

/*
* Stub version of write.
*/
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>
#undef errno
extern int errno;
int
_DEFUN (write, (file, ptr, len),
int file _AND
char *ptr _AND
int len)
{
errno = ENOSYS;
return -1;
}