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 | 7bbbc981968d7619167eb72937440cb95bf3b1cf (patch) | |
tree | f902bfd8f9bfb0cc0a1e566b847250bc22061542 /mysys/my_create.c | |
parent | d685c48350e9db3d3a7a6e28664f6d5420668745 (diff) | |
download | mariadb-git-7bbbc981968d7619167eb72937440cb95bf3b1cf.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 |