13
13
along with this program; if not, write to the Free Software
14
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
21
21
/* Write a chunk of bytes to a file */
23
size_t my_write(int Filedes, const uchar *Buffer, size_t Count, myf MyFlags)
23
size_t my_write(int Filedes, const unsigned char *Buffer, size_t Count, myf MyFlags)
25
25
size_t writenbytes, written;
29
29
/* The behavior of write(fd, buf, 0) is not portable */
35
35
if ((writenbytes= write(Filedes, Buffer, Count)) == Count)