~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.cc

Fixed -Wmissing-declarations

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
/*
91
91
  Used for sorting chains with qsort().
92
92
*/
93
 
int sort_set (tina_set *a, tina_set *b)
 
93
static int sort_set (tina_set *a, tina_set *b)
94
94
{
95
95
  /*
96
96
    We assume that intervals do not intersect. So, it is enought to compare
424
424
  '\r''\n' --  DOS\Windows line ending
425
425
*/
426
426
 
427
 
off_t find_eoln_buff(Transparent_file *data_buff, off_t begin,
428
 
                     off_t end, int *eoln_len)
 
427
static off_t find_eoln_buff(Transparent_file *data_buff, off_t begin,
 
428
                            off_t end, int *eoln_len)
429
429
{
430
430
  *eoln_len= 0;
431
431