~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_open.cc

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
#include "drizzled/internal/mysys_priv.h"
 
16
#include "config.h"
 
17
 
 
18
#include "drizzled/internal/my_sys.h"
17
19
#include "drizzled/my_error.h"
18
20
 
19
21
#include <fcntl.h>
22
24
#include <cstdlib>
23
25
#include <cstring>
24
26
 
 
27
 
 
28
namespace drizzled
 
29
{
 
30
namespace internal
 
31
{
 
32
 
25
33
/*
26
34
  Open a file
27
35
 
121
129
  }
122
130
  return -1;
123
131
}
 
132
 
 
133
} /* namespace internal */
 
134
} /* namespace drizzled */