~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_create.cc

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
#include "mysys/mysys_priv.h"
17
 
#include "my_dir.h"
 
17
 
 
18
#include <fcntl.h>
 
19
#include <errno.h>
 
20
 
 
21
#include "mysys/my_dir.h"
18
22
#include "mysys/mysys_err.h"
19
23
 
20
 
#include <errno.h>
21
24
        /*
22
25
        ** Create a new file
23
26
        ** Arguments:
28
31
        */
29
32
 
30
33
 
31
 
File my_create(const char *FileName, int CreateFlags, int access_flags,
 
34
int my_create(const char *FileName, int CreateFlags, int access_flags,
32
35
               myf MyFlags)
33
36
{
34
37
  int fd, rc;