~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_test1.c

Merging from trunk r102

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#define MAX_REC_LENGTH 1024
23
23
 
24
 
static void usage();
 
24
static void usage(void);
25
25
 
26
26
static int rec_pointer_size=0, flags[50];
27
27
static int key_field=FIELD_SKIP_PRESPACE,extra_field=FIELD_SKIP_ENDSPACE;
673
673
} /* get options */
674
674
 
675
675
 
676
 
static void usage()
 
676
static void usage(void)
677
677
{
678
678
  printf("Usage: %s [options]\n\n", my_progname);
679
679
  my_print_help(my_long_options);
680
680
  my_print_variables(my_long_options);
681
681
}
682
682
 
683
 
#include "mi_extrafunc.h"