~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/my_pread.c

  • Committer: Stewart Smith
  • Date: 2008-09-15 07:13:59 UTC
  • mfrom: (383.1.21 drizzle)
  • mto: This revision was merged to the branch mainline in revision 408.
  • Revision ID: stewart@flamingspork.com-20080915071359-f8bznznyaiqrtqxa
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    #             Number of bytes read
40
40
*/
41
41
 
42
 
size_t my_pread(File Filedes, uchar *Buffer, size_t Count, my_off_t offset,
 
42
size_t my_pread(File Filedes, unsigned char *Buffer, size_t Count, my_off_t offset,
43
43
                myf MyFlags)
44
44
{
45
45
  size_t readbytes;
95
95
    #             Number of bytes read
96
96
*/
97
97
 
98
 
size_t my_pwrite(int Filedes, const uchar *Buffer, size_t Count,
 
98
size_t my_pwrite(int Filedes, const unsigned char *Buffer, size_t Count,
99
99
                 my_off_t offset, myf MyFlags)
100
100
{
101
101
  size_t writenbytes, written;