| 1149 | |
| 1150 | |
| 1151 | static void usage(void) |
| 1152 | { |
| 1153 | DBUG_ENTER("usage"); |
| 1154 | print_version(); |
| 1155 | printf("This software comes with ABSOLUTELY NO WARRANTY. " |
| 1156 | "This is free software,\n" |
| 1157 | "and you are welcome to modify and redistribute it under the GPL license.\n" |
| 1158 | "Usage:\n"); |
| 1159 | my_print_help(my_long_options); |
| 1160 | my_print_variables(my_long_options); |
| 1161 | DBUG_VOID_RETURN; |
| 1162 | } |
| 1163 | |
| 1164 | |
| 1165 | static int get_options(int *argc, char ***argv) |
no test coverage detected