diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/auth/dialog.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugin/auth/dialog.c b/plugin/auth/dialog.c index f496d454256..f2901811428 100644 --- a/plugin/auth/dialog.c +++ b/plugin/auth/dialog.c @@ -39,16 +39,16 @@ # define RTLD_DEFAULT GetModuleHandle(NULL) #endif +#if !defined (_GNU_SOURCE) +# define _GNU_SOURCE /* for RTLD_DEFAULT */ +#endif + #include <mysql/plugin_auth.h> #include <mysql/client_plugin.h> #include <string.h> #include <stdio.h> #include <stdlib.h> -#if !defined (_GNU_SOURCE) -# define _GNU_SOURCE /* for RTLD_DEFAULT */ -#endif - /** first byte of the question string is the question "type". It can be an "ordinary" or a "password" question. |