~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_copy.cc

  • Committer: Brian Aker
  • Date: 2010-01-22 00:53:13 UTC
  • Revision ID: brian@gaz-20100122005313-jmizcbcdi1lt4tcx
Revert db patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
 
 
16
 
#include <config.h>
17
 
 
18
 
#include <drizzled/internal/my_sys.h>
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
15
 
 
16
#include "drizzled/internal/mysys_priv.h"
19
17
 
20
18
#include <fcntl.h>
21
19
 
22
 
#include <drizzled/internal/m_string.h>
 
20
#include "drizzled/internal/m_string.h"
23
21
#if defined(HAVE_UTIME_H)
24
22
#include <utime.h>
25
23
#elif defined(HAVE_SYS_UTIME_H)
38
36
 
39
37
#include <drizzled/util/test.h>
40
38
 
41
 
namespace drizzled
42
 
{
43
 
namespace internal
44
 
{
45
 
 
46
39
/*
47
40
  int my_copy(const char *from, const char *to, myf MyFlags)
48
41
 
130
123
  }
131
124
  return(-1);
132
125
} /* my_copy */
133
 
 
134
 
} /* namespace internal */
135
 
} /* namespace drizzled */