diff options
author | unknown <kostja@dipika.(none)> | 2008-02-07 23:52:30 +0300 |
---|---|---|
committer | unknown <kostja@dipika.(none)> | 2008-02-07 23:52:30 +0300 |
commit | 32ae4aefe6e661dbbb28509fcd2bfe4c487faa54 (patch) | |
tree | 5edd99af116f17d7caa51d323c339694aab3854a /client | |
parent | 178f33e05b21834e37b6f5bd4d54d44b3a6fc2f9 (diff) | |
download | mariadb-git-32ae4aefe6e661dbbb28509fcd2bfe4c487faa54.tar.gz |
Fix compile warning about undefined rmdir() function.
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqltest.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index 0fd83b86502..05c9ced3848 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -51,6 +51,10 @@ #ifdef HAVE_SYS_WAIT_H #include <sys/wait.h> #endif +#ifdef __WIN__ +#include <direct.h> +#endif + #ifndef WEXITSTATUS # ifdef __WIN__ |