1 /* 2 * linux/lib/write.c 3 * 4 * Copyright (C) 1991, 1992 Linus Torvalds 5 */ 6 7 #define __LIBRARY__ 8 #include <linux/unistd.h> 9 #include <linux/types.h> 10 11 _syscall3(int,write,int,fd,const char *,buf,off_t,count) 12