~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/os/os0file.c

Remove PLUGIN and MODULES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
#include "srv0start.h"
56
56
#include "fil0fil.h"
57
57
#include "buf0buf.h"
 
58
#include <errno.h>
 
59
#include <fcntl.h>
 
60
#include <limits.h>
58
61
#ifndef UNIV_HOTBACKUP
59
62
# include "os0sync.h"
60
63
# include "os0thread.h"
63
66
/* Add includes for the _stat() call to compile on Windows */
64
67
#  include <sys/types.h>
65
68
#  include <sys/stat.h>
66
 
#  include <errno.h>
67
69
# endif /* __WIN__ */
68
70
#endif /* !UNIV_HOTBACKUP */
69
71