diff options
author | unknown <jani@hynda.mysql.fi> | 2007-10-15 18:22:19 +0300 |
---|---|---|
committer | unknown <jani@hynda.mysql.fi> | 2007-10-15 18:22:19 +0300 |
commit | 32d207ca32a92eb593ed8a8586942b20e5cd4a95 (patch) | |
tree | f902bfd8f9bfb0cc0a1e566b847250bc22061542 /mysys/my_create.c | |
parent | fb84f573adf00de5e606a3b312bec99d24a0f49c (diff) | |
download | mariadb-git-32d207ca32a92eb593ed8a8586942b20e5cd4a95.tar.gz |
Fixes to merge between 5.1-main and 5.1-marvel
include/my_atomic.h:
To avoid compiler problems on some platforms, static inline
should be a macro here.
include/my_bit.h:
To avoid compiler problems on windows and solaris
mysys/my_create.c:
To avoid compiler problems on windows.
mysys/my_delete.c:
To avoid compiler problems on windows.
Diffstat (limited to 'mysys/my_create.c')
-rw-r--r-- | mysys/my_create.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysys/my_create.c b/mysys/my_create.c index 454ccf6ab7d..7c97ef0201a 100644 --- a/mysys/my_create.c +++ b/mysys/my_create.c @@ -17,6 +17,7 @@ #include <my_dir.h> #include "mysys_err.h" #include <errno.h> +#include <my_sys.h> #if defined(__WIN__) #include <share.h> #endif |