summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/my_getopt.h6
-rw-r--r--include/my_sys.h6
-rw-r--r--mysys/my_getopt.c2
3 files changed, 7 insertions, 7 deletions
diff --git a/include/my_getopt.h b/include/my_getopt.h
index f3db2a70a92..f5b847f7dda 100644
--- a/include/my_getopt.h
+++ b/include/my_getopt.h
@@ -53,12 +53,6 @@ struct my_option
extern char *disabled_my_option;
extern my_bool my_getopt_print_errors;
-enum loglevel {
- ERROR_LEVEL,
- WARNING_LEVEL,
- INFORMATION_LEVEL
-};
-
typedef my_bool (* my_get_one_option) (int, const struct my_option *, char * );
typedef void (* my_error_reporter) (enum loglevel level, const char *format, ... );
diff --git a/include/my_sys.h b/include/my_sys.h
index 4934df3c4e5..9e43889d0e0 100644
--- a/include/my_sys.h
+++ b/include/my_sys.h
@@ -261,6 +261,12 @@ typedef struct st_typelib { /* Different types saved here */
const char **type_names;
} TYPELIB;
+enum loglevel {
+ ERROR_LEVEL,
+ WARNING_LEVEL,
+ INFORMATION_LEVEL
+};
+
enum cache_type
{
READ_CACHE,WRITE_CACHE,
diff --git a/mysys/my_getopt.c b/mysys/my_getopt.c
index 91671fcff5b..c471a30eb35 100644
--- a/mysys/my_getopt.c
+++ b/mysys/my_getopt.c
@@ -17,10 +17,10 @@
#include <my_global.h>
#include <m_string.h>
#include <stdlib.h>
-#include <my_getopt.h>
#include <assert.h>
#include <my_sys.h>
#include <mysys_err.h>
+#include <my_getopt.h>
static int findopt(char *optpat, uint length,
const struct my_option **opt_res,