| 82 | |
| 83 | |
| 84 | static void usage(void) |
| 85 | { |
| 86 | print_version(); |
| 87 | puts(ORACLE_WELCOME_COPYRIGHT_NOTICE("2000")); |
| 88 | printf("Print a description for a system error code or a MySQL error code.\n"); |
| 89 | printf("If you want to get the error for a negative error code, you should use\n-- before the first error code to tell perror that there was no more options.\n\n"); |
| 90 | printf("Usage: %s [OPTIONS] [ERRORCODE [ERRORCODE...]]\n",my_progname); |
| 91 | my_print_help(my_long_options); |
| 92 | my_print_variables(my_long_options); |
| 93 | } |
| 94 | |
| 95 | |
| 96 | static my_bool |
no test coverage detected