Browse Source

Fix compile warning about undefined rmdir() function.

pull/374/head
unknown 18 years ago
parent
commit
32ae4aefe6
  1. 4
      client/mysqltest.c

4
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__

Loading…
Cancel
Save