~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/my_pread.c

  • Committer: Monty Taylor
  • Date: 2008-08-12 23:54:34 UTC
  • mfrom: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: monty@inaugust.com-20080812235434-unrwb64yanvrkyzf
Merged up from codestyle.

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;