diff options
author | monty@mysql.com <> | 2004-03-18 01:48:46 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-03-18 01:48:46 +0200 |
commit | 19d0a60eca2e5444dd4fc9d77300dc974a84a0fc (patch) | |
tree | 0e218cb26fd4ef2c5a39cf79f58ed0b2a447d9f1 /innobase/os | |
parent | 53c810cda446a060d4b9f41040f9227313c24ba1 (diff) | |
download | mariadb-git-19d0a60eca2e5444dd4fc9d77300dc974a84a0fc.tar.gz |
Don't change server suffix if given to configure
Portability fixes
Diffstat (limited to 'innobase/os')
-rw-r--r-- | innobase/os/os0file.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/innobase/os/os0file.c b/innobase/os/os0file.c index 1f70cf883e7..86a71f142fb 100644 --- a/innobase/os/os0file.c +++ b/innobase/os/os0file.c @@ -6,8 +6,6 @@ The interface to the operating system file i/o primitives Created 10/21/1995 Heikki Tuuri *******************************************************/ -#include <sys/stat.h> - #include "os0file.h" #include "os0sync.h" #include "os0thread.h" @@ -17,6 +15,9 @@ Created 10/21/1995 Heikki Tuuri #include "fil0fil.h" #include "buf0buf.h" +#include <sys/types.h> +#include <sys/stat.h> + #undef HAVE_FDATASYNC #ifdef POSIX_ASYNC_IO |