diff options
Diffstat (limited to 'myisam/ft_test1.c')
-rw-r--r-- | myisam/ft_test1.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/myisam/ft_test1.c b/myisam/ft_test1.c index dfe8e30383b..5093b591fb2 100644 --- a/myisam/ft_test1.c +++ b/myisam/ft_test1.c @@ -30,8 +30,9 @@ static int create_flag=0,error=0; #define MAX_REC_LENGTH 300 static char record[MAX_REC_LENGTH],read_record[MAX_REC_LENGTH]; -void get_options(int argc,char *argv[]); static int run_test(const char *filename); +static void get_options(int argc, char *argv[]); +static void create_record(char *, int); int main(int argc,char *argv[]) { @@ -46,8 +47,6 @@ static MI_COLUMNDEF recinfo[3]; static MI_KEYDEF keyinfo[2]; static MI_KEYSEG keyseg[10]; -void create_record(char *, int); - static int run_test(const char *filename) { MI_INFO *file; @@ -235,7 +234,7 @@ void create_record(char *pos, int n) /* Read options */ -void get_options(int argc,char *argv[]) +static void get_options(int argc,char *argv[]) { int c; const char *options="hVvsNSKFU#:"; |